ScaffoldBootstrap constructor

const ScaffoldBootstrap({
  1. Key? key,
  2. Color? backgroundColor,
  3. required List<Component> children,
})

Implementation

const ScaffoldBootstrap({
  Key? key,
  this.backgroundColor,
  required this.children,
}) : super(key: key);