Children.fromJson constructor
Implementation
Children.fromJson(Map<String, dynamic> json) {
attr = json['attr'] != null ? Attr.fromJson(json['attr']) : null;
if (json['children'] != null) {
children = [];
json['children'].forEach((v) {
children?.add(Children.fromJson(v));
});
}
type = json['type'];
svix = json['svix'];
eid = json['eid'];
}