arrowLeft static method

Widget arrowLeft({
  1. double? width,
  2. double? height,
  3. Color? color,
})

Implementation

static Widget arrowLeft({double? width, double? height, Color? color}) {
  return SvgPicture.asset(
    "${path}icon-arrow-left.svg",
    width: width ?? 28,
    height: height ?? 20,
    colorFilter:
        color != null ? ColorFilter.mode(color, BlendMode.srcIn) : null,
  );
}