CustomMaterialApp constructor

const CustomMaterialApp({
  1. Key? key,
  2. required Widget home,
  3. required Color color,
  4. required Brightness type,
  5. String? title,
  6. ThemeData? theme,
})

Implementation

const CustomMaterialApp({
  Key? key,
  required this.home,
  required this.color,
  required this.type,
  this.title,
  this.theme,
}) : super(key: key);