outline method

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

Implementation

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