sendChatToAll method
Call this method to send a chat message to all users.
message
the message content
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> sendChatToAll(String message) async {
var params = <String, dynamic>{};
params.putIfAbsent("message", () => message);
return await methodChannel
.invokeMethod<String>('sendChatToAll', params)
.then<String>((String? value) => value ?? "");
}