followUsers method

Future<Status> followUsers({
  1. List<String>? userIds,
  2. List<String>? usernames,
})

Implementation

Future<rtpb.Status> followUsers({
  List<String>? userIds,
  List<String>? usernames,
}) =>
    _send(rtpb.Envelope(
        statusFollow: rtpb.StatusFollow(
      userIds: userIds,
      usernames: usernames,
    )));