toJson method
Implementation
Map<String, dynamic> toJson() {
final attributeAction = this.attributeAction;
final attributeKey = this.attributeKey;
return {
if (attributeAction != null) 'AttributeAction': attributeAction,
if (attributeKey != null) 'AttributeKey': attributeKey,
};
}