delete static method

Future<ResponseData> delete(
  1. String endpoint, {
  2. Map<String, dynamic>? body,
  3. Map<String, String>? headers,
})

Implementation

static Future<ResponseData> delete(String endpoint,
        {Map<String, dynamic>? body, Map<String, String>? headers}) =>
    _request('DELETE', endpoint, body: body, headers: headers);