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