sendWatchFace method

Future<void> sendWatchFace(
  1. SendWatchFaceBean sendWatchFaceBean
)

Implementation

Future<void> sendWatchFace(SendWatchFaceBean sendWatchFaceBean) async {
  String jsonStr = sendWatchFaceBeanToJson(sendWatchFaceBean);
  await mConnMethodChannel.invokeMethod(
      'sendWatchFace', <String, String>{"sendWatchFaceBean": jsonStr});
}