factory Location.fromMap(Map<String, dynamic> json) => Location( long: json["long"]?.toDouble(), lat: json["lat"]?.toDouble(), );