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