deleteChatMessage method
Call this method to delete a specific chat message from the Zoom server.
This does not delete the message in your user interface.
msgId
the message Id
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<String> deleteChatMessage(String msgId) async {
var params = <String, dynamic>{};
params.putIfAbsent("msgId", () => msgId);
return await methodChannel
.invokeMethod<String>('deleteChatMessage', params)
.then<String>((String? value) => value ?? "");
}