getFamilyName method

String getFamilyName()

Implementation

String getFamilyName() {
  return this.name != null
      ? (this.name["typoFamilyName"] ?? this.name["fontFamily"])
      : "";
}