toJson method
Implementation
Map<String, dynamic> toJson() {
final attributeName = this.attributeName;
final attributeValue = this.attributeValue;
return {
if (attributeName != null) 'AttributeName': attributeName,
if (attributeValue != null) 'AttributeValue': attributeValue,
};
}