makePayment method
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");
}