SupportWatchFaceBean.fromJson constructor
SupportWatchFaceBean.fromJson(
- 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"] ?? {},
),
);