twoTone method

Widget twoTone({
  1. Color? fill,
  2. Color? twoTone,
  3. double? strokeWidth,
  4. StrokeJoin? strokeLineJoin,
  5. StrokeCap? strokeLineCap,
  6. double? size,
})

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,
  );
}