PaymentMethod constructor

const PaymentMethod({
  1. required int integrationId,
  2. String? alias,
  3. required String name,
  4. required String methodType,
  5. required String currency,
  6. required bool live,
  7. required bool useCvcWithMoto,
})

Implementation

const PaymentMethod({
  required this.integrationId,
  this.alias,
  required this.name,
  required this.methodType,
  required this.currency,
  required this.live,
  required this.useCvcWithMoto,
});