patch static method
Makes a PATCH request to url
Implementation
static Future<http.Response> patch(String url, {Object? body, bool quiet = false, String? token, bool noToken = false, Map<String, String>? headers}) =>
_makeRequest(_RequestType.patch, url, body: body, headers: headers, quiet: quiet, noToken: noToken, token: token);