AviPlace.fromMap constructor

AviPlace.fromMap(
  1. Map<String, dynamic> map
)

Implementation

AviPlace.fromMap(Map<String, dynamic> map)
    : latitude = map['latitude'],
      longitude = map['longitude'],
      street = map['street'],
      number = map['number'],
      neighborhood = map['neighborhood'],
      state = map['state'],
      city = map['city'],
      country = map['country'],
      zipCode = map['zipCode'],
      formattedAddress = map['formattedAddress']
;