ThemeScope<TTheme extends ExtendedTheme> constructor

const ThemeScope<TTheme extends ExtendedTheme>({
  1. Key? key,
  2. String? themeId,
  3. Map<String, TTheme>? availableThemes,
  4. TTheme? theme,
  5. required ThemedWidgetBuilder<TTheme> themeBuilder,
})

Implementation

const ThemeScope(
    {Key? key,
    this.themeId,
    this.availableThemes,
    this.theme,
    required this.themeBuilder})
    : super(key: key);