filled static method
IconParkProps
filled(
- Color fill,
- Color innerStroke, {
- double? strokeWidth,
- StrokeJoin? strokeLineJoin,
- StrokeCap? strokeLineCap,
Implementation
static IconParkProps filled(
Color fill,
Color innerStroke, {
double? strokeWidth,
StrokeJoin? strokeLineJoin,
StrokeCap? strokeLineCap,
}) {
return IconParkProps(
color1: fill,
color2: fill,
color3: innerStroke,
color4: innerStroke,
theme: IconParkThemeType.filled,
strokeWidth: strokeWidth,
strokeLineJoin: strokeLineJoin,
strokeLineCap: strokeLineCap,
);
}