handleGetRequest method
Performs a GET request to the specified path with optional headers.
Implementation
@override
Future<Response> handleGetRequest(
String path, {
Map<String, String?>? headers,
}) async {
return await _dio.get(
path,
options: await getOptionWithToken(headers: headers),
);
}