handleDeleteRequestWithoutToken method

  1. @override
Future<Response> handleDeleteRequestWithoutToken(
  1. String path
)
override

Performs a DELETE request to the specified path without including any authentication token.

Implementation

@override
Future<Response> handleDeleteRequestWithoutToken(String path) async {
  return _dio.delete(
    path,
    options: getOptionWithoutToken(),
  );
}