initials property

String initials

The initials of the user, which are the first characters of the first name and the last name. If the first name or the last name is null or empty, an empty string is used instead.

Implementation

String get initials =>
    '${(firstName?.isNotEmpty ?? false) ? firstName![0] : ''}'
    '${(lastName?.isNotEmpty ?? false) ? lastName![0] : ''}';