copyright property

String copyright

Implementation

String get copyright => _getAttribute<String>(kCopyright, '');
void copyright=(String? x)

pass null to remove key from attributes

Implementation

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