shareTwitter method

Future<Map?> shareTwitter(
  1. String urlTemp
)

Implementation

Future<Map?> shareTwitter(String urlTemp) async {
  TwitterClient.setKeys(this.consumerKey, this.consumerSecret);
  var tc = TwitterClient();
  return tc.tweetPromo(urlTemp);
}