sendChatMessage method
Sends message to the chat.
Parameter message
message to be send, max length allowed is 4096 characters
Implementation
void sendChatMessage(String message) async {
final Map<String, dynamic> args = <String, dynamic>{};
args['message'] = message;
await _channel.invokeMethod('sendChatMessage', args);
}