verifyOrder method
Sends a request to verify an order.
orderId
: The ID of the order to verify.
Returns an http.Response
with the verification result.
Implementation
Future<http.Response> verifyOrder(Map<String, dynamic> orderId) {
return makeApiRequest(ApiEndpoints.verifyOrder, orderId, 'POST');
}