author property

String author

Implementation

String get author => _getAttribute<String>(kAuthor, '');
void author=(String? x)

pass null to remove key from attributes

Implementation

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