You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
444 B

4 years ago
/// name : "百花谷"
/// avatar : "https://pos.upload.gznl.top/MDAwMA==/2021/06/6a3586dc-a340-470f-b645-1e3155d5f558.jpg"
class Author {
3 years ago
String? name;
String? avatar;
4 years ago
3 years ago
Author();
4 years ago
Author.fromJson(dynamic json) {
3 years ago
this.name = json["name"];
this.avatar = json["avatar"];
4 years ago
}
Map<String, dynamic> toJson() {
var map = <String, dynamic>{};
3 years ago
map["name"] = this.name;
map["avatar"] = this.avatar;
4 years ago
return map;
}
}