BreakpointBuilder constructor

const BreakpointBuilder({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext,
    2. Breakpoint
    ),
  3. BreakType type = BreakType.material,
  4. int? columnInterval,
  5. double? minColumnSize,
})

Implementation

const BreakpointBuilder({
  super.key,
  required this.builder,
  this.type = BreakType.material,
  this.columnInterval,
  this.minColumnSize,
});