toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'lat': lat,
    'lon': lon,
    'type': type,
    'countryCode': countryCode,
    'region': region,
    'city': city,
    'zip': zip,
    'streetAddress': streetAddress,
    'subThoroughFare': subThoroughFare,
    'haccuracy': haccuracy,
  };
}