paymentMethodSub property

String paymentMethodSub

Implementation

String get paymentMethodSub => _getAttribute<String>(kPaymentMethodSub, '');
void paymentMethodSub=(String? x)

For cards, this will be the card subtype. Will be null for other payment method types.

Possible values: credit, debit, prepaid, or unknown

pass null to remove key from attributes

Implementation

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