delete<K> method

Future<Response<K>> delete<K>(
  1. String action, {
  2. dynamic body,
  3. bool protected = true,
  4. bool verbose = false,
})

Implementation

Future<Response<K>> delete<K>(
  String action, {
  dynamic body,
  bool protected = true,
  bool verbose = false,
}) {
  return apiClient.delete<K>(
    '$url$action/',
    body: body,
    protected: protected,
    verbose: verbose,
  );
}