formatAddress static method
Format a readable address from Placemark
Implementation
static String formatAddress(Placemark place) {
return [
place.name,
place.subLocality,
place.locality,
place.administrativeArea,
place.country,
place.postalCode,
].where((e) => e != null && e.isNotEmpty).join(', ');
}