SizingBuilder constructor

const SizingBuilder({
  1. Key? key,
  2. required SizingWidgetBuilder builder,
  3. bool systemFontScale = false,
  4. Size baseSize = const Size(360, 640),
})

Implementation

const SizingBuilder({
  Key? key,
  required this.builder,
  this.systemFontScale = false,
  this.baseSize = const Size(360, 640),
}) : super(key: key);