ComponentTheme constructor

ComponentTheme({
  1. Key? key,
  2. ThemeState? themeState,
  3. required Widget child,
})

Implementation

ComponentTheme({
  super.key,
  ThemeState? themeState,
  required this.child,
}) : themeState = themeState ?? ThemeState();