friendshipsNoRetweetsIds method
Future<List<int> >
friendshipsNoRetweetsIds({
- TransformResponse<
List< transform = defaultIntListTransform,int> >
Returns a collection of userIds
that the currently authenticated user
does not want to receive retweets from.
Use friendshipsUpdate to set the "no retweets" status for a given user account on behalf of the current user.
Implementation
Future<List<int>> friendshipsNoRetweetsIds({
TransformResponse<List<int>> transform = defaultIntListTransform,
}) async {
return client
.get(Uri.https(
'api.twitter.com', '1.1/friendships/no_retweets/ids.json'))
.then(transform);
}