getRaw method
Implementation
Future<dynamic> getRaw(
String endpoint, {
Map<String, dynamic>? queryParameters,
}) async {
try {
final response = await _dio.get(
endpoint,
queryParameters: queryParameters,
);
return response.data;
} on DioException catch (e) {
throw Exception(_handleError(e));
}
}