lastName property

String lastName

Implementation

String get lastName => _getAttribute<String>(kLastName, '');
void lastName=(String? x)

pass null to remove key from attributes

Implementation

set lastName(String? x) =>
    (x == null) ? _attributes.remove(kLastName) : _attributes[kLastName] = x;