ThemeBuilder constructor

ThemeBuilder(
  1. Palette colors, [
  2. BrandTypo? typography
])

Constructs a ThemeMaker instance with specified color and typography configurations

colors - The color palette for theme generation typography - Optional typography configuration, defaults to FallBackTypography when not provided

Implementation

ThemeBuilder(this.colors, [BrandTypo? typography])
  : typography = typography ?? FallBackTypography();