toMap method

Map<String, String> toMap()

Implementation

Map<String, String> toMap() {
  return {
    'oauth_consumer_key': consumerKey,
    'oauth_consumer_secret': consumerSecret,
    'oauth_token': token,
    'oauth_token_secret': tokenSecret,
  };
}