ResponsiveBuilder constructor

const ResponsiveBuilder({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. SizingInformation sizingInformation
    ),
  3. ScreenBreakpoints? breakpoints,
  4. RefinedBreakpoints? refinedBreakpoints,
})

Implementation

const ResponsiveBuilder({
  Key? key,
  required this.builder,
  this.breakpoints,
  this.refinedBreakpoints,
}) : super(key: key);