AttributesResource.fromJson constructor
Implementation
factory AttributesResource.fromJson(Map<String, dynamic> json) {
return AttributesResource(
applicationId: json['ApplicationId'] as String,
attributeType: json['AttributeType'] as String,
attributes: (json['Attributes'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}