AvailablePaymentMethod constructor

const AvailablePaymentMethod({
  1. required String type,
  2. int sequence = 0,
  3. int show = 0,
  4. List<String> schemes = const [],
  5. String psp = '',
  6. String identifier = '',
  7. String merchantId = '',
  8. String gatewayMerchantId = '',
  9. String publicKey = '',
  10. String merchantCode = '',
})

Implementation

const AvailablePaymentMethod({
  required this.type,
  this.sequence = 0,
  this.show = 0,
  this.schemes = const [],
  this.psp = '',
  this.identifier = '',
  this.merchantId = '',
  this.gatewayMerchantId = '',
  this.publicKey = '',
  this.merchantCode = '',
});