toFar static method

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

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