paymentMethod property

String paymentMethod

Implementation

String get paymentMethod => _getAttribute<String>(kPaymentMethod, '');
void paymentMethod=(String? x)

Required. The payment method used to make a donation.

Possible values: ach, cash, check, or card

pass null to remove key from attributes

Implementation

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