InheritedResponsiveBreakpoints constructor

const InheritedResponsiveBreakpoints({
  1. Key? key,
  2. required ResponsiveBreakpointsData data,
  3. required Widget child,
})

Creates a widget that provides ResponsiveBreakpointsData to its descendants.

The data and child arguments must not be null.

Implementation

const InheritedResponsiveBreakpoints(
    {super.key, required this.data, required super.child});