BreakpointsBaseValues constructor

const BreakpointsBaseValues({
  1. Key? key,
  2. required Color color,
  3. ThemeBreakpoints themeBreakpoints = _defaultBreakpoints,
  4. required Widget child,
})

Implementation

const BreakpointsBaseValues({
  super.key,
  required this.color, // <-- this is the value we want to remove
  this.themeBreakpoints = _defaultBreakpoints,
  required super.child,
});