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