undoRetweet method

void undoRetweet(
  1. int id
)

Implementation

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