DioLoggingInterceptor constructor

DioLoggingInterceptor({
  1. Level level = Level.none,
  2. bool compact = true,
  3. void logPrint(
    1. Object object
    ) = print,
})

Implementation

DioLoggingInterceptor({
  this.level = Level.none,
  this.compact = true,
  this.logPrint = print,
});