handleGetRequestWithoutToken method

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

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

Implementation

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