AtomicThemeData constructor

const AtomicThemeData({
  1. required String name,
  2. required AtomicColorScheme colors,
  3. AtomicTypographyTheme typography = const AtomicTypographyTheme(),
  4. AtomicSpacingTheme spacing = const AtomicSpacingTheme(),
  5. AtomicShadowsTheme shadows = const AtomicShadowsTheme(),
  6. AtomicBordersTheme borders = const AtomicBordersTheme(),
  7. AtomicAnimationsTheme animations = const AtomicAnimationsTheme(),
})

Implementation

const AtomicThemeData({
  required this.name,
  required this.colors,
  this.typography = const AtomicTypographyTheme(),
  this.spacing = const AtomicSpacingTheme(),
  this.shadows = const AtomicShadowsTheme(),
  this.borders = const AtomicBordersTheme(),
  this.animations = const AtomicAnimationsTheme(),
});