fullName property

String get fullName

Full name combining first and last name.

Implementation

String get fullName => '${firstName ?? ''} ${lastName ?? ''}'.trim();