AuthTokenInterceptor constructor

const AuthTokenInterceptor({
  1. required String clientId,
  2. required String clientSecret,
  3. required String tokenUrl,
  4. required List<String> scopes,
  5. required String username,
  6. required String password,
})

Implementation

const AuthTokenInterceptor({
  required this.clientId,
  required this.clientSecret,
  required this.tokenUrl,
  required this.scopes,
  required this.username,
  required this.password,
});