GlowTheme constructor

const GlowTheme({
  1. Key? key,
  2. required Widget child,
  3. GlowThemeData? lightTheme,
  4. GlowThemeData? darkTheme,
  5. GlowThemeType? themeType,
})

Implementation

const GlowTheme({
  Key? key,
  required this.child,
  this.lightTheme,
  this.darkTheme,
  this.themeType,
}) : super(key: key);