sendWatchFaceBackground method

Future<void> sendWatchFaceBackground(
  1. WatchFaceBackgroundBean watchFaceBackgroundInfo
)

Implementation

Future<void> sendWatchFaceBackground(
    WatchFaceBackgroundBean watchFaceBackgroundInfo) async {
  String jsonStr = watchFaceBackgroundBeanToJson(watchFaceBackgroundInfo);
  await mConnMethodChannel.invokeMethod('sendWatchFaceBackground',
      <String, String>{"watchFaceBackgroundInfo": jsonStr});
}