success static method
Implementation
static Widget success(
{double? width,
double? height,
Color? color,
BoxFit boxFit = BoxFit.contain}) {
return SvgPicture.asset(
"${path}icon-success.svg",
width: width,
height: height,
fit: boxFit,
colorFilter:
color != null ? ColorFilter.mode(color, BlendMode.srcIn) : null,
);
}