TokenInterceptor constructor

TokenInterceptor({
  1. required TokenManager tokenManager,
  2. required TokenRefreshStrategy tokenRefreshStrategy,
})

Creates a TokenInterceptor with the given tokenManager and tokenRefreshStrategy.

Implementation

TokenInterceptor({
  required this.tokenManager,
  required this.tokenRefreshStrategy,
});