creatorName property

String creatorName

Implementation

String get creatorName => _getAttribute<String>(kCreatorName, '');
void creatorName=(String? x)

pass null to remove key from attributes

Implementation

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