FlutterBootstrap5 constructor

const FlutterBootstrap5({
  1. Key? key,
  2. BreakPoints breakPoints = const BreakPoints(),
  3. FB5Typography typography = const FB5Typography(),
  4. ContainerBreakPoints containerBreakPoints = const ContainerBreakPoints(),
  5. FB5Colors colors = const FB5Colors(),
  6. double fontSize = ScreenData.defaultFontSize,
  7. required Widget builder(
    1. BuildContext context
    ),
})

Implementation

const FlutterBootstrap5({
  Key? key,
  this.breakPoints = const BreakPoints(),
  this.typography = const FB5Typography(),
  this.containerBreakPoints = const ContainerBreakPoints(),
  this.colors = const FB5Colors(),
  this.fontSize = ScreenData.defaultFontSize,
  required this.builder,
}) : super(key: key);