outline static method
IconParkProps
outline(
- Color fill, {
- Color background = const Color(0x00000000),
- double? strokeWidth,
- StrokeJoin? strokeLineJoin,
- StrokeCap? strokeLineCap,
Implementation
static IconParkProps outline(
Color fill, {
Color background = const Color(0x00000000),
double? strokeWidth,
StrokeJoin? strokeLineJoin,
StrokeCap? strokeLineCap,
}) {
return IconParkProps(
color1: fill,
color2: background,
color3: fill,
color4: background,
theme: IconParkThemeType.outline,
strokeWidth: strokeWidth,
strokeLineJoin: strokeLineJoin,
strokeLineCap: strokeLineCap,
);
}