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