updateConfigs method

void updateConfigs({
  1. Color? fillColor,
  2. Color? strokeColor,
  3. int? strokeWidth,
})

Implementation

void updateConfigs({
  Color? fillColor,
  Color? strokeColor,
  int? strokeWidth,
}) {
  this.fillColor = fillColor ?? this.fillColor;
  this.strokeColor = strokeColor ?? this.strokeColor;
  this.strokeWidth = strokeWidth ?? this.strokeWidth;
}