toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attribute = this.attribute;
  final operator = this.operator;
  final value = this.value;
  return {'attribute': ?attribute, 'operator': ?operator, 'value': ?value};
}