twoTone method
Implementation
Widget twoTone({
Color? fill,
Color? twoTone,
double? strokeWidth,
StrokeJoin? strokeLineJoin,
StrokeCap? strokeLineCap,
double? size,
}) {
return icon(
strokeWidth: strokeWidth,
strokeLineJoin: strokeLineJoin,
strokeLineCap: strokeLineCap,
size: size,
theme: IconParkThemeType.twoTone,
outStrokeColor: fill,
outFillColor: twoTone,
);
}