deleteWithOptions method

Future<Response> deleteWithOptions(
  1. dynamic url, {
  2. Map<String, String>? headers,
  3. List? options,
})

Implementation

Future<http.Response> deleteWithOptions(url,
        {Map<String, String>? headers, List<dynamic>? options}) =>
    _sendUnstreamedWithOptions('DELETE', url, headers, options);