paymentCheckDatedAt property

String paymentCheckDatedAt

Implementation

String get paymentCheckDatedAt =>
    _getAttribute<String>(kPaymentCheckDatedAt, '');
void paymentCheckDatedAt=(String? x)

The check date for donations made by check. Example: 2000-01-01

pass null to remove key from attributes

Implementation

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