paymentBrand property

String paymentBrand

Implementation

String get paymentBrand => _getAttribute<String>(kPaymentBrand, '');
void paymentBrand=(String? x)

For cards, this is the card brand (eg Visa, Mastercard, etc). For checks and bank accounts, this is the bank name. For cash donations, this should be null.

pass null to remove key from attributes

Implementation

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