toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final comparisonOperator = this.comparisonOperator;
  final fieldToMatch = this.fieldToMatch;
  final size = this.size;
  final textTransformations = this.textTransformations;
  return {
    'ComparisonOperator': comparisonOperator.toValue(),
    'FieldToMatch': fieldToMatch,
    'Size': size,
    'TextTransformations': textTransformations,
  };
}