queryWatchFaceOfID method

Future<WatchFaceIdBean> queryWatchFaceOfID(
  1. int id
)

Implementation

Future<WatchFaceIdBean> queryWatchFaceOfID(int id) async {
  String jsonStr = await mConnMethodChannel
      .invokeMethod('queryWatchFaceOfID', <String, int>{"id": id});
  WatchFaceIdBean? watchFaceId = watchFaceIdBeanFromJson(jsonStr);
  return watchFaceId;
}