CardColorModel constructor

const CardColorModel({
  1. required Color card,
  2. required Color shadow,
  3. required Color text,
})

Implementation

const CardColorModel({
  required this.card,
  required this.shadow,
  required this.text,
});