TagAttributes.fromJson constructor Null safety
Implementation
TagAttributes.fromJson(Map<String, dynamic> json) {
if (json['name'] != null) {
name = Name.fromJson(json['name']);
}
// if (json['description'] != null) {
// description = Description.fromJson(json['description']);
// }
group = json['group'] ?? '';
}