close static method

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

Implementation

static Widget close({double? width, double? height, Color? color}) {
  return SvgPicture.asset(
    "${path}icon-close.svg",
    width: width ?? 14,
    height: height ?? 14,
    colorFilter: ColorFilter.mode(color ?? kPrimaryColor, BlendMode.srcIn),
  );
}