orderFee method

Future<Response> orderFee(
  1. Map<String, dynamic> feeDetails
)

Sends a request to calculate the fee for an order.

feeDetails: The details of the order to calculate the fee for. Returns an http.Response with the fee information.

Implementation

Future<http.Response> orderFee(Map<String, dynamic> feeDetails) {
  return makeApiRequest(ApiEndpoints.orderFee, feeDetails, 'POST');
}