createCardTransaction method

Future<Map> createCardTransaction(
  1. String token,
  2. String transactionAmount,
  3. String transactionCurrencyCode,
  4. String? merchantInfo,
  5. String? merchantCategoryCode,
  6. String? cardNumber,
  7. String? cardId,
  8. String? authCode,
)

Implementation

Future<Map> createCardTransaction(
    String token,
    String transactionAmount,
    String transactionCurrencyCode,
    String? merchantInfo,
    String? merchantCategoryCode,
    String? cardNumber,
    String? cardId,
    String? authCode) {
  throw UnimplementedError(
      "Create Card Transaction has not been implemented");
}