ThemeConfig<T extends ControlTheme> constructor

const ThemeConfig<T extends ControlTheme>({
  1. InitFactory<T>? builder,
  2. dynamic initTheme,
  3. required Map<dynamic, ThemeInitializer<T>> themes,
})

builder - Initializer of ControlTheme. Set this initializer only if providing custom, extended version of ControlTheme.

Implementation

const ThemeConfig({
  this.builder,
  this.initTheme,
  required this.themes,
});