getUserListByTag method

  1. @override
Future<TUIValueCallBack<TUIUserListResult>> getUserListByTag(
  1. int tag,
  2. int nextSequence
)
override

7.5 Get user information in the room based on tags

tag Tag type. Number type, greater than or equal to 1000, you can customize it. nextSequence Paging pull flag, fill in 0 for the first pull, and the callback is successful. If nextSequence in the returned data is not zero, paging is required. Pass it in and pull again until it is 0

Implementation

@override
Future<TUIValueCallBack<TUIUserListResult>> getUserListByTag(
    int tag, int nextSequence) {
  return _engineNative.getUserListByTag(tag, nextSequence);
}