HttpAuthCallback constructor

HttpAuthCallback({
  1. required String authEndpoint,
  2. Client? client,
  3. HeaderProvider? headerProvider,
})

Implementation

HttpAuthCallback({
  required this.authEndpoint,
  http.Client? client,
  this.headerProvider,
})  : _endpoint = requireSecureEndpoint(authEndpoint, const {'https'}),
      _client = client ?? http.Client();