createRoom method
Host creates a room with the selected device identifiers (e.g., usernames or network IPs).
Implementation
@override
Future<void> createRoom(List<String> deviceIds) async {
await methodChannel.invokeMethod('createRoom', {'deviceIds': deviceIds});
}