M3ETheme constructor

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

Creates an expressive theme provider for child.

Implementation

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