paymentSourceId property

String paymentSourceId

Implementation

String get paymentSourceId => _getAttribute<String>(kPaymentSourceId, '');
void paymentSourceId=(String? x)

pass null to remove key from attributes

Implementation

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