sendMessage method
send message to watch the message must conform to https://api.flutter.dev/flutter/services/StandardMessageCodec-class.html
android consideration: message will be converted to a json string and send on a channel name "MessageChannel"
Implementation
@override
void sendMessage(Map<String, dynamic> message) async {
await methodChannel.invokeMethod('sendMessage', message);
}