twoTone static method

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

Implementation

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