Style constructor

const Style({
  1. required String name,
  2. required List<Color> colors,
  3. Color? stroke,
  4. Color? background,
})

Implementation

const Style(
    {required this.name, required this.colors, this.stroke, this.background});