handlePutRequestWithoutToken method

  1. @override
Future<Response> handlePutRequestWithoutToken(
  1. String path, [
  2. Map<String, dynamic>? data
])
override

Performs a PUT request to the specified path without including any authentication token. Accepts an optional data parameter.

Implementation

@override
Future<Response> handlePutRequestWithoutToken(String path,
    [Map<String, dynamic>? data]) async {
  return await _dio.put(
    path,
    data: data,
    options: getOptionWithoutToken(),
  );
}