onRequest method
Called when the request is about to be sent.
Implementation
@override
void onRequest(RequestOptions options, RequestInterceptorHandler handler) {
// if (showLogging) {
// if (kDebugMode) {
// print('OS BASECODE - REQUEST[${options.method}] => PATH: ${options.path}');
// print('OS BASECODE - DATA BODY: [${options.data}]');
// }
// }
handleOnRequest(options);
return super.onRequest(options, handler);
}