retweet method

void retweet(
  1. int id
)

Implementation

void retweet(int id) async {
  String base = '/1.1/statuses/retweet/$id.json';
  await _twitterPost(base, []);
}