outline static method

IconParkProps outline(
  1. Color fill, {
  2. Color background = const Color(0x00000000),
  3. double? strokeWidth,
  4. StrokeJoin? strokeLineJoin,
  5. 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,
  );
}