secondarySystemGroupedBackground constant
The color for content layered on top of the main background of your grouped interface, equivalent to UIColor.secondarySystemGroupedBackground.
Typically used for grouped content, including table views and platter-based designs.
Implementation
static const CupertinoDynamicColor secondarySystemGroupedBackground = CupertinoDynamicColor(
  debugLabel: 'secondarySystemGroupedBackground',
  color: Color.fromARGB(255, 255, 255, 255),
  darkColor: Color.fromARGB(255, 28, 28, 30),
  highContrastColor: Color.fromARGB(255, 255, 255, 255),
  darkHighContrastColor: Color.fromARGB(255, 36, 36, 38),
  elevatedColor: Color.fromARGB(255, 255, 255, 255),
  darkElevatedColor: Color.fromARGB(255, 44, 44, 46),
  highContrastElevatedColor: Color.fromARGB(255, 255, 255, 255),
  darkHighContrastElevatedColor: Color.fromARGB(255, 54, 54, 56),
);