httpPatch method

Future<Response> httpPatch(
  1. String path, {
  2. String? body,
})
inherited

Implementation

Future<http.Response> httpPatch(String path, {String? body}) async {
  return await _safelyRun(() async {
    return await http.patch(
      _buildUri(path),
      headers: headers,
      body: body,
    );
  });
}