logInterceptor property
Interceptor
get
logInterceptor
Implementation
static Interceptor get logInterceptor {
_logInterceptor ??= LogInterceptor(
request: true,
requestBody: true,
responseHeader: true,
requestHeader: true,
responseBody: true,
error: true,
);
return _logInterceptor!;
}