MultiSelectNestedItem.fromJson constructor
Implementation
factory MultiSelectNestedItem.fromJson(Map<String, dynamic> json) {
return MultiSelectNestedItem(
id: json['id'],
name: json['name'],
children: json["children"] == null
? []
: List<MultiSelectNestedItem>.from(json["children"]
.map((item) => MultiSelectNestedItem.fromJson(item))),
);
}