toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    "latitude": this.latitude,
    "longitude": this.longitude,
    "address": this.address,
  };
}