TokenManagerProvider class

Token storage provider used by kakao flutter sdk

DefaultTokenManager is used as the default storage. If you want to manage tokens yourself, you can set up your own storage by implementing the TokenManager. If you change the implementation of the storage during the app service, you should consider migrating existing stored tokens for app update users.

// Set up custom storage
TokenManagerProvider.instance.manager = MyTokenManager();

Constructors

TokenManagerProvider()

Properties

hashCode int
The hash code for this object.
no setterinherited
manager TokenManager
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Static Properties

instance TokenManagerProvider
singleton instance of the default TokenManagerProvider used by the SDK.
final