OudsTheme constructor

OudsTheme({
  1. Key? key,
  2. required OudsThemeContract themeContract,
  3. required ThemeMode themeMode,
  4. required bool onColoredSurface,
  5. required Widget child,
})

Constructor to initialize the OudsTheme with a theme configuration and theme mode. @param themeContract The theme configuration containing colors, typography, etc. @param themeMode The current theme mode (light or dark). @param onColoredSurface Whether the theme is applied on a colored surface. @param child The widget tree that will be wrapped by this theme.

Implementation

OudsTheme({
  super.key,
  required this.themeContract,
  required this.themeMode,
  required this.onColoredSurface,
  required super.child,
}) {
  _instance = this;
}