paymentLast4 property

String paymentLast4

Implementation

String get paymentLast4 => _getAttribute<String>(kPaymentLast4, '');
void paymentLast4=(String? x)

The last 4 digits of a donation's payment method number. For cards, this is the last 4 digits of the card number. For bank accounts, this is the last 4 digits of the bank account number. For cash and check donations, this should be null. Note: In cases where we don't have all 4 digits on file, a * will be used to pad the number. For example: *321

pass null to remove key from attributes

Implementation

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