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