unfollowUsers method

Future<List<UserPresence>> unfollowUsers({
  1. List<String>? userIds,
})

Implementation

Future<List<UserPresence>> unfollowUsers({
  List<String>? userIds,
}) async {
  final res = await _send<rtpb.Status>(rtpb.Envelope(
      statusUnfollow: rtpb.StatusUnfollow(
    userIds: userIds,
  )));

  return res.presences.map(UserPresence.fromDto).toList();
}