toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final comparisonOperator = this.comparisonOperator;
  final attributeValueList = this.attributeValueList;
  return {
    'ComparisonOperator': comparisonOperator.toValue(),
    if (attributeValueList != null) 'AttributeValueList': attributeValueList,
  };
}