AttributeKeyAndValue.fromJson constructor
Implementation
factory AttributeKeyAndValue.fromJson(Map<String, dynamic> json) {
return AttributeKeyAndValue(
key: AttributeKey.fromJson(json['Key'] as Map<String, dynamic>),
value:
TypedAttributeValue.fromJson(json['Value'] as Map<String, dynamic>),
);
}