toJson method

Map<String, dynamic> toJson()

Implementation

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