fullName property

String fullName

Returns the person's full name with space between first and last name

Implementation

String get fullName => "${this.firstName} ${this.lastName}";