SecureSessionStorage class

SecureStorage 기반 세션 저장소 (기본값)

암호화된 저장소에 세션을 저장합니다. iOS는 Keychain, Android는 EncryptedSharedPreferences를 사용합니다.

final kAuth = await KAuth.init(
  kakao: KakaoConfig(appKey: 'YOUR_APP_KEY'),
);
// SecureSessionStorage가 자동으로 사용됨
Implemented types

Constructors

SecureSessionStorage({AndroidOptions? androidOptions, IOSOptions? iosOptions})
SecureSessionStorage 생성

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

clear() Future<void>
모든 데이터 삭제
override
delete(String key) Future<void>
데이터 삭제
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
read(String key) Future<String?>
데이터 읽기
override
save(String key, String value) Future<void>
데이터 저장
override
toString() String
A string representation of this object.
inherited

Operators

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