updatePayment method

Future updatePayment(
  1. dynamic map
)

Implementation

Future<dynamic> updatePayment(dynamic map) async {
  dynamic headers = {
    "public_key": this.public_key,
    "private_key": this.private_key,
    "secret_key": this.secret_key,
    "merchant_key": this.merchant_key
  };
  return await apiClient.postFromApi(update_payment_url, map, headers);
}