subject property

String subject

Implementation

String get subject => _getAttribute<String>(kSubject, '');
void subject=(String? x)

pass null to remove key from attributes

Implementation

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