patch abstract method
Simulates a PATCH request
url The API route (should include the resource ID)
body The partial update data
headers Optional headers for the request
Returns a Future<Response>, representing the result of the simulated PATCH operation.
Implementation
Future<Response> patch(Uri url, {Map<String, String>? headers, Object? body});