PaymayaDetails constructor

const PaymayaDetails({
  1. required num discount,
  2. required num serviceCharge,
  3. required num shippingFee,
  4. required num tax,
  5. required num subtotal,
})

Implementation

const PaymayaDetails({
  required this.discount,
  required this.serviceCharge,
  required this.shippingFee,
  required this.tax,
  required this.subtotal,
});