BankPaymentMethod constructor

BankPaymentMethod({
  1. String? webSection,
  2. String? webSectionKh,
  3. required String section,
  4. required String sectionKh,
  5. required List<Items> items,
})

Implementation

BankPaymentMethod({
  this.webSection,
  this.webSectionKh,
  required this.section,
  required this.sectionKh,
  required this.items,
});