OAuthData class

need dependencies sqflite: path: 各ユーザー毎に、OAuth用のデータを保存するテーブル ※ ただし、userId=-1を、認証中の一時領域として使用

Constructors

OAuthData(String userId)

Properties

accessScreenName String?
getter/setter pair
accessToken String?
getter/setter pair
accessTokenSecret String?
getter/setter pair
authenticateDenied String?
getter/setter pair
authenticateToken String?
getter/setter pair
authenticateVerifier String?
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
requestToken String?
getter/setter pair
requestTokenSecret String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
userId String
ユーザーIDをキーとして保存するが、まだユーザーIDのわからない認証中は、一時バッファとして-1をユーザーIDとするので注意する
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
データ内容をmapに変換して返却する
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

fromMap(Map<String, dynamic> data) OAuthData
mapからこのクラスにデータを変換して返却する

Constants

USERID_TEMP → const String