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