makePayment method

Future<PaymentResponse> makePayment({
  1. required double amount,
  2. required MyPosCurrency currency,
  3. bool printMerchantReceipt = true,
  4. bool printCustomerReceipt = true,
  5. bool fixedPinPad = false,
  6. bool giftCardTransaction = false,
  7. String? eReceiptReceiver,
  8. String? reference,
})

Implementation

Future<PaymentResponse> makePayment({
  required double amount,
  required MyPosCurrency currency,
  bool printMerchantReceipt = true,
  bool printCustomerReceipt = true,
  bool fixedPinPad = false,
  bool giftCardTransaction = false,
  String? eReceiptReceiver,
  String? reference,
}) {
  throw UnimplementedError('makePayment(paymentInfo) has not been implemented.');
}