operatingUser method

Future<void> operatingUser(
  1. String roomId,
  2. ChatroomUserOperationType type,
  3. String userId
)

Implementation

Future<void> operatingUser(
  String roomId,
  ChatroomUserOperationType type,
  String userId,
) async {
  try {
    await ChatroomUIKitClient.instance.operatingUser(
      roomId: roomId,
      userId: userId,
      type: type,
    );
  } on ChatError {}
}