FlintTheme constructor

const FlintTheme({
  1. String name = 'flint',
  2. Map<String, Object?> colors = const {},
  3. Map<String, Object?> spacing = const {},
  4. Map<String, Object?> radii = const {},
  5. Map<String, Object?> shadows = const {},
  6. Map<String, Object?> fonts = const {},
  7. ThemeTokens tokens = const ThemeTokens({}),
})

Creates a Flint UI design theme.

Implementation

const FlintTheme({
  this.name = 'flint',
  this.colors = const {},
  this.spacing = const {},
  this.radii = const {},
  this.shadows = const {},
  this.fonts = const {},
  this.tokens = const ThemeTokens({}),
});