AppColor constructor

AppColor({
  1. Color? primary,
  2. Color? primaryVariant,
  3. Color? red,
  4. Color? redVariant,
  5. Color? blue,
  6. Color? background,
  7. Color? surface,
  8. Color? onPrimary,
  9. Color? onBackground,
  10. Color? white,
  11. Color? whiteVariant,
  12. Color? grey,
  13. Color? greyVariant,
  14. Color? dark,
  15. Color? darkVariant,
  16. Color? yellow,
})

Implementation

AppColor({this.primary,
  this.primaryVariant,
  this.red,
  this.redVariant,
  this.blue,
  this.background,
  this.surface,
  this.onPrimary,
  this.onBackground,
  this.white,
  this.whiteVariant,
  this.grey,
  this.greyVariant,
  this.dark,
  this.darkVariant,
  this.yellow});