fullName property

String get fullName

Implementation

String get fullName {
  return "${firstName ?? ""} ${lastName ?? ""}".trim();
}