fetchAttendeeList static method

Future<TUIValueCallBack<TUIScheduledAttendeesResult>> fetchAttendeeList(
  1. String roomId,
  2. String cursor,
  3. int count
)

Implementation

static Future<TUIValueCallBack<TUIScheduledAttendeesResult>>
    fetchAttendeeList(String roomId, String cursor, int count) {
  String userData = Tools.generateUserData();
  Completer<TUIValueCallBack<TUIScheduledAttendeesResult>> completer =
      Completer();
  _valueCallback2Future<TUIScheduledAttendeesResult>(userData, completer);
  _engineSDK.Dart_FetchAttendeeList(
      _conferenceListFFIPointer!,
      Tools.string2PointerChar(roomId),
      Tools.string2PointerChar(cursor),
      count,
      Tools.string2PointerChar(userData));
  return completer.future;
}