UpdatePatientRequest constructor

UpdatePatientRequest({
  1. String? id,
  2. String? humanReadableIdentifier,
  3. String? notes,
})

Implementation

factory UpdatePatientRequest({
  $core.String? id,
  $core.String? humanReadableIdentifier,
  $core.String? notes,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (humanReadableIdentifier != null) {
    $result.humanReadableIdentifier = humanReadableIdentifier;
  }
  if (notes != null) {
    $result.notes = notes;
  }
  return $result;
}