toJson method

Map<String, dynamic> toJson()

to json map

Implementation

Map<String, dynamic> toJson() {
  return {
    "access_token": accessToken,
    "expires_in": expiresTime,
    "token_type": tokenType,
    "scope": scope,
    "refresh_token": refreshToken,
    "token_time": tokenTime
  };
}