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.
15 lines
430 B
15 lines
430 B
class FriendFootprintInfoData {
|
|
List<String>? profilePhotoList;
|
|
|
|
FriendFootprintInfoData({this.profilePhotoList});
|
|
|
|
FriendFootprintInfoData.fromJson(Map<String, dynamic> json) {
|
|
profilePhotoList = json['profilePhotoList'].cast<String>();
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['profilePhotoList'] = this.profilePhotoList;
|
|
return data;
|
|
}
|
|
}
|