makePayment method

Future<Map<String, dynamic>> makePayment({
  1. required String amount,
  2. required String currencyCode,
  3. required String customerName,
  4. required String customerEmail,
  5. String? customerPhoneNumber,
  6. required String paymentReference,
  7. required String paymentDescription,
  8. required PaymentMethod paymentMethod,
})

Implementation

Future<Map<String, dynamic>> makePayment(
    {required String amount,
    required String currencyCode,
    required String customerName,
    required String customerEmail,
       String? customerPhoneNumber,
    required String paymentReference,
    required String paymentDescription,
    required PaymentMethod paymentMethod}) async {
  throw UnimplementedError("makePayment() not implemented");
}