sendRoomBinaryMessage abstract method
Sends binary messages to all other users in the room.
The message
length must not exceed 46 KB.
Notes:
- Before sending an in-room broadcasting binary message, you must call RTCRoom.joinRoom to join the target room.
- After calling this API, the local user will receive RTCRoomEventHandler.onRoomMessageSendResult.
- If the binary message is sent successfully, all the other users in the room will receive RTCRoomEventHandler.onRoomBinaryMessageReceived.
Implementation
Future<int?> sendRoomBinaryMessage(Uint8List message);