sendWatchface method

Future<bool> sendWatchface(
  1. String path
)
override

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;
}