sendMeetingCustomMsg method

Future<Map> sendMeetingCustomMsg(
  1. String text
)

Implementation

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