GetRecentPatientsResponse_PatientWithRoomAndBed constructor

GetRecentPatientsResponse_PatientWithRoomAndBed({
  1. String? id,
  2. String? humanReadableIdentifier,
  3. GetRecentPatientsResponse_Room? room,
  4. GetRecentPatientsResponse_Bed? bed,
})

Implementation

factory GetRecentPatientsResponse_PatientWithRoomAndBed({
  $core.String? id,
  $core.String? humanReadableIdentifier,
  GetRecentPatientsResponse_Room? room,
  GetRecentPatientsResponse_Bed? bed,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (humanReadableIdentifier != null) {
    $result.humanReadableIdentifier = humanReadableIdentifier;
  }
  if (room != null) {
    $result.room = room;
  }
  if (bed != null) {
    $result.bed = bed;
  }
  return $result;
}