toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() => {
  'latitude' : latitude,
  'longitude' : longitude,
  'street': street,
  'number' : number,
  'neighborhood' : neighborhood,
  'state': state,
  'city': city,
  'country': country,
  'zipCode': zipCode,
  'formattedAddress': formattedAddress,
};