DocumentAttributeValueCountPair.fromJson constructor
Implementation
factory DocumentAttributeValueCountPair.fromJson(Map<String, dynamic> json) {
return DocumentAttributeValueCountPair(
count: json['Count'] as int?,
documentAttributeValue: json['DocumentAttributeValue'] != null
? DocumentAttributeValue.fromJson(
json['DocumentAttributeValue'] as Map<String, dynamic>)
: null,
);
}