OktaIdentityBaseSDK class

The base SDK class providing core functionality for OktaIdentity integration.

This class manages:

  • Configuration storage and access
  • HTTP client lifecycle
  • Resource cleanup

All OktaIdentity SDK functionality should extend or use this base class.

Constructors

OktaIdentityBaseSDK({required OktaIdentityConfig config, Client? httpClient})
Initializes the base SDK with the given configuration.

Properties

clientId → dynamic
Placeholder getter for clientId. Note: Should likely be removed or properly implemented to return _config.clientId.
no setter
config OktaIdentityConfig
Gets the current OktaIdentity configuration. Provides read-only access to the configuration parameters.
no setter
hashCode int
The hash code for this object.
no setterinherited
httpClient → Client
Gets the shared HTTP client for making authenticated requests.
no setter
oktaIdentityDomain ↔ dynamic
Public field for OktaIdentity domain access. Note: This appears to be redundant with the config's oktaIdentityDomain.
getter/setter pair
redirectUri → dynamic
Placeholder getter for redirectUri. Note: Should likely be removed or properly implemented to return _config.redirectUri.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

dispose() → void
Cleans up resources, particularly the HTTP client.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited