onRequest method

  1. @override
void onRequest(
  1. RequestOptions options,
  2. RequestInterceptorHandler handler
)
override

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);
}