SelectedPaymentMethod constructor

const SelectedPaymentMethod({
  1. required String type,
  2. String? method,
  3. EasyPay? easyPay,
  4. Transfer? transfer,
  5. String? paymentMethodKey,
})

Implementation

const SelectedPaymentMethod(
    {required this.type,
    this.method,
    this.easyPay,
    this.transfer,
    this.paymentMethodKey});