chatroomOperating method

Future<void> chatroomOperating(
  1. ChatroomOperationType type
)

Implementation

Future<void> chatroomOperating(
  ChatroomOperationType type,
) async {
  try {
    await ChatroomUIKitClient.instance.chatroomOperating(
      roomId: roomId,
      type: type,
    );
  } on ChatError {}
}