reason property

String reason

Implementation

String get reason => _getAttribute<String>(kReason, '');
void reason=(String? x)

pass null to remove key from attributes

Implementation

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