updateHumanNameSuffix method

RelatedPerson updateHumanNameSuffix(
  1. List<String> suffix
)

Implementation

RelatedPerson updateHumanNameSuffix(List<String> suffix) => copyWith(
    name: name == null
        ? HumanName(suffix: suffix)
        : name!.updateSuffix(suffix));