SupportWatchFaceBean.fromJson constructor

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

Implementation

factory SupportWatchFaceBean.fromJson(Map<String, dynamic> json) =>
    SupportWatchFaceBean(
      type: json["type"],
      supportWatchFaceInfo: SupportWatchFaceInfo.fromJson(
        json["supportWatchFaceInfo"] ?? {},
      ),
      sifliSupportWatchFaceInfo: SifliSupportWatchFaceInfo.fromJson(
        json["sifliSupportWatchFaceInfo"] ?? {},
      ),
      jieliSupportWatchFaceInfo: JieliSupportWatchFaceInfo.fromJson(
        json["jieliSupportWatchFaceInfo"] ?? {},
      ),
    );