Colors constructor

Colors({
  1. int? id,
  2. String? primaryColor,
  3. String? textOnPrimaryColor,
  4. dynamic secondaryColor,
  5. dynamic textOnSecondaryColor,
  6. dynamic accentColor,
  7. dynamic textOnAccentColor,
  8. String? backgroundColor,
  9. String? textOnBackgroundColor,
  10. bool? isRoot,
})

Implementation

Colors({
  this.id,
  this.primaryColor,
  this.textOnPrimaryColor,
  this.secondaryColor,
  this.textOnSecondaryColor,
  this.accentColor,
  this.textOnAccentColor,
  this.backgroundColor,
  this.textOnBackgroundColor,
  this.isRoot,
});