ThemeConfig constructor

ThemeConfig({
  1. Color? lightText,
  2. Color? darkText,
  3. Color? lightBackground,
  4. Color? darkBackground,
  5. Color? primary,
})

Implementation

ThemeConfig({
  this.lightText,
  this.darkText,
  this.lightBackground,
  this.darkBackground,
  this.primary,
});