toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'latitude': latitude,
'longitude': longitude,
'address': address,
'city': city,
'state': state,
'country': country,
'postalCode': postalCode,
'addressSource': addressSource.name,
};
}