displayName property
The display name of the user, which is a combination of the first name and the last name. If the first name or the last name is null, an empty string is used instead.
Implementation
String get displayName => '${firstName ?? ''} ${lastName ?? ''}';