formatGeolocation static method

String formatGeolocation(
  1. Point<num> geo
)

Implementation

static String formatGeolocation(Point geo) {
  return '${formatLatitude(geo.x)} ${formatLongitude(geo.y)}';
}