class GeoZonesRequestModel { final String PatientID; GeoZonesRequestModel({this.PatientID}); Map toFlatMap() { if (PatientID == null) return {}; return {"PatientID": PatientID.toString()}; } }