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