CizerApp constructor

const CizerApp({
  1. required Widget builder(
    1. BuildContext ctx
    ),
  2. double? phoneBreakPoint,
  3. double? tabletBreakPoint,
  4. double? maximumBreakPoint,
  5. Key? key,
})

Implementation

const CizerApp(
    {
      required this.builder,
      this.phoneBreakPoint,
    this.tabletBreakPoint,
    this.maximumBreakPoint,
    Key? key})
    : super(key: key);