orderFee method
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');
}