setStyle method
void
setStyle({})
Implementation
void setStyle(
{Color? fillColor,
List<Color>? fillColors,
Color? strokeColor,
List<Color>? strokeColors,
double? strokeWidth,
Color? backgroundStrokeColor,
List<Color>? backgroundStrokeColors,
double? backgroundStrokeWidth,
bool family = true}) {
setFill(
color: fillColor,
colors: fillColors,
family: family,
);
setStroke(
color: strokeColor,
colors: strokeColors,
width: strokeWidth,
background: false,
family: family);
setBackgroundStroke(
color: backgroundStrokeColor,
colors: backgroundStrokeColors,
width: backgroundStrokeWidth,
family: family);
}