KeycloakInitOptions constructor

KeycloakInitOptions({
  1. bool useNonce,
  2. dynamic adapter,
  3. String onLoad,
  4. String token,
  5. String refreshToken,
  6. String idToken,
  7. num timeSkew,
  8. bool checkLoginIframe,
  9. num checkLoginIframeInterval,
  10. String responseMode,
  11. String redirectUri,
  12. String silentCheckSsoRedirectUri,
  13. bool silentCheckSsoFallback,
  14. String flow,
  15. String pkceMethod,
  16. bool enableLogging,
  17. String scope,
  18. num messageReceiveTimeout,
})

Implementation

external factory KeycloakInitOptions(
    {bool useNonce,
    dynamic /*'default'|'cordova'|'cordova-native'|KeycloakAdapter*/ adapter,
    String /*'login-required'|'check-sso'*/ onLoad,
    String token,
    String refreshToken,
    String idToken,
    num timeSkew,
    bool checkLoginIframe,
    num checkLoginIframeInterval,
    String /*'query'|'fragment'*/ responseMode,
    String redirectUri,
    String silentCheckSsoRedirectUri,
    bool silentCheckSsoFallback,
    String /*'standard'|'implicit'|'hybrid'*/ flow,
    String /*'S256'*/ pkceMethod,
    bool enableLogging,
    String scope,
    num messageReceiveTimeout});