fetchAttendeeList static method
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;
}