SpeiderListElement.fromJson constructor

SpeiderListElement.fromJson(
  1. dynamic json
)

Implementation

factory SpeiderListElement.fromJson(dynamic json) => SpeiderListElement(
  itemId: json["itemId"],
  img: json["img"],
  remark: json["remark"],
  updateTime: DateTime.parse(json["updateTime"]),
  title: json["title"],
  url: json["url"],
);