initials method

String initials()

Implementation

String initials() {
  return ((this.givenName?.isNotEmpty == true ? this.givenName![0] : "") +
          (this.familyName?.isNotEmpty == true ? this.familyName![0] : ""))
      .toUpperCase();
}