SendWatchFaceBean.fromJson constructor

SendWatchFaceBean.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory SendWatchFaceBean.fromJson(Map<String, dynamic> json) =>
    SendWatchFaceBean(
      watchFaceFlutterBean: CustomizeWatchFaceBean.fromJson(
        json["watchFaceFlutterBean"],
      ),
      timeout: json["timeout"],
    );