toFar static method
Implementation
static Widget toFar({double? width, double? height, Color? color}) {
return SvgPicture.asset(
"${path}location-to-far.svg",
width: width,
height: height ?? 72,
colorFilter:
color != null ? ColorFilter.mode(color, BlendMode.srcIn) : null,
);
}