BraintreePaymentMethodNonce constructor

const BraintreePaymentMethodNonce({
  1. required String nonce,
  2. required String typeLabel,
  3. required String description,
  4. required bool isDefault,
  5. String? paypalPayerId,
})

Implementation

const BraintreePaymentMethodNonce({
  required this.nonce,
  required this.typeLabel,
  required this.description,
  required this.isDefault,
  this.paypalPayerId,
});