toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final operator = this.operator;
  final values = this.values;
  return {
    if (name != null) 'Name': name.toValue(),
    if (operator != null) 'Operator': operator.toValue(),
    if (values != null) 'Value': values,
  };
}