12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- class CertificateItem {
- String id;
- int ownerId;
- String code;
- String issuanceAgency;
- String expirationDate;
- String certificateType;
- String firstImgUrl;
- String secondImgUrl;
- int status;
- CertificateItem({
- this.id = "",
- this.ownerId = 0,
- this.code = "",
- this.issuanceAgency = "",
- this.expirationDate = "",
- this.certificateType = "",
- this.firstImgUrl = "",
- this.secondImgUrl = "",
- this.status = 0
- });
- CertificateItem.fromJsonMap(Map<String, dynamic> map):
- id = map["id"],
- // ownerId = map["ownerId"],
- code = map["code"]??"",
- issuanceAgency = map["issuanceAgency"]??"",
- expirationDate = map["expirationDate"]??"",
- certificateType = map["certificateType"]??"",
- firstImgUrl = map["firstImgUrl"]??"",
- secondImgUrl = map["secondImgUrl"]??"",
- status = map["status"];
- Map<String, dynamic> toJson() {
- final Map<String, dynamic> data = new Map<String, dynamic>();
- data['id'] = id;
- data['ownerId'] = ownerId;
- data['code'] = code;
- data['issuanceAgency'] = issuanceAgency;
- data['expirationDate'] = expirationDate;
- data['certificateType'] = certificateType;
- data['firstImgUrl'] = firstImgUrl;
- data['secondImgUrl'] = secondImgUrl;
- data['status'] = status;
- return data;
- }
- }
|