kickUserOffSeatByAdmin method

  1. @override
Future<TUIActionCallback> kickUserOffSeatByAdmin(
  1. int seatIndex,
  2. String userId
)
override

9.9 The host/administrator removes the user from the seat. The callback is used to notify the success or failure of the API call.

Implementation

@override
Future<TUIActionCallback> kickUserOffSeatByAdmin(
    int seatIndex, String userId) {
  return _engineNative.kickUserOffSeatByAdmin(seatIndex, userId);
}