VMobjectStyle constructor

const VMobjectStyle({
  1. required List<Color>? fillColors,
  2. required List<Color>? strokeColors,
  3. required double strokeWidth,
  4. required List<Color>? backgroundStrokeColors,
  5. required double backgroundStrokeWidth,
})

Implementation

const VMobjectStyle({
  required this.fillColors,
  required this.strokeColors,
  required this.strokeWidth,
  required this.backgroundStrokeColors,
  required this.backgroundStrokeWidth,
});