WatchFaceStore.fromJson constructor
Implementation
factory WatchFaceStore.fromJson(Map<String, dynamic> json) => WatchFaceStore(
total: json["total"] ?? -1,
prePage: json["prePage"] ?? -1,
pageIndex: json["pageIndex"] ?? -1,
list: List<WatchFaceBean>.from((json["list"] ?? []).map((x) => WatchFaceBean.fromJson(x))),
);