filled static method

IconParkProps filled(
  1. Color fill,
  2. Color innerStroke, {
  3. double? strokeWidth,
  4. StrokeJoin? strokeLineJoin,
  5. 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,
  );
}