declineReason property

String declineReason

Implementation

String get declineReason => _getAttribute<String>(kDeclineReason, '');
void declineReason=(String? x)

pass null to remove key from attributes

Implementation

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