factory Attribute.fromJson(Map<String, dynamic> json) { return Attribute( name: json['Name'] as String?, value: json['Value'] as String?, ); }