sendMeetingCustomMsg method
Implementation
Future<Map> sendMeetingCustomMsg(String text) async {
String cookie = DateTime.now().millisecondsSinceEpoch.toString();
return await _channel
.invokeMethod("sendMeetingCustomMsg", {"text": text, "cookie": cookie});
}