updateHumanNameText method

PatientContact updateHumanNameText(
  1. String text
)

Implementation

PatientContact updateHumanNameText(String text) => copyWith(
    name: name == null ? HumanName(text: text) : name!.updateText(text));