UIColorPalette constructor

UIColorPalette({
  1. String? accent,
  2. String? accentForeground,
  3. String? danger,
  4. String? dangerForeground,
  5. String? dimension,
  6. String? dimensionForeground,
  7. String? measure,
  8. String? measureForeground,
  9. String? primaryBackground,
  10. String? primaryForeground,
  11. String? secondaryBackground,
  12. String? secondaryForeground,
  13. String? success,
  14. String? successForeground,
  15. String? warning,
  16. String? warningForeground,
})

Implementation

UIColorPalette({
  this.accent,
  this.accentForeground,
  this.danger,
  this.dangerForeground,
  this.dimension,
  this.dimensionForeground,
  this.measure,
  this.measureForeground,
  this.primaryBackground,
  this.primaryForeground,
  this.secondaryBackground,
  this.secondaryForeground,
  this.success,
  this.successForeground,
  this.warning,
  this.warningForeground,
});