followedBy static method

UsersQuery followedBy(
  1. UserId id
)

Implementation

static UsersQuery followedBy(UserId id) {
  var query = UsersQuery(null);
  query._followedBy = id;
  return query;
}