sendWatchface method
Send a message to all connected watches
Implementation
Future<bool> sendWatchface(String path) async {
final isWatchfaceInstalled = await methodChannel.invokeMethod<bool>('sendWatchface', {'path': path});
return isWatchfaceInstalled ?? false;
}