cityStateCountry property

String get cityStateCountry

Implementation

String get cityStateCountry {
  List<String> parts = [];
  if (locality != null && locality!.isNotEmpty) parts.add(locality!);
  if (administrativeArea != null && administrativeArea!.isNotEmpty) parts.add(administrativeArea!);
  if (country != null && country!.isNotEmpty) parts.add(country!);

  return parts.join(', ');
}