onRequest method
Called when the request is about to be sent.
Implementation
@override
void onRequest(RequestOptions options, RequestInterceptorHandler handler) {
final log = LoggedRequest(
method: options.method,
path: options.uri.toString(),
headers: options.headers,
requestBody: options.data,
time: DateTime.now(),
);
logger.add(log);
options.extra['start_time'] = log.time;
super.onRequest(options, handler);
}