M3EThemeScope constructor

const M3EThemeScope({
  1. required M3EThemeData baseData,
  2. required M3EThemeController controller,
  3. required Widget child,
  4. Brightness? initialTheme,
  5. bool? autoTheming,
  6. bool? dynamicColoring,
  7. Key? key,
})

Creates an adaptive theme scope for child.

Implementation

const M3EThemeScope({
  required this.baseData,
  required this.controller,
  required this.child,
  this.initialTheme,
  this.autoTheming,
  this.dynamicColoring,
  super.key,
});