TipStyle constructor
TipStyle({})
Implementation
TipStyle({
Color? fillColor,
Color? strokeColor,
double strokeWidth = 0,
Color? backgroundStrokeColor,
double backgroundStrokeWidth = 0,
}) : super(
fillColors: fillColor != null ? [fillColor] : [],
strokeColors: strokeColor != null ? [strokeColor] : [],
strokeWidth: strokeWidth,
backgroundStrokeColors:
backgroundStrokeColor != null ? [backgroundStrokeColor] : [],
backgroundStrokeWidth: backgroundStrokeWidth,
);