OudsTheme constructor
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;
}