close static method
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),
);
}