toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final caseSensitive = this.caseSensitive;
final expressionValue = this.expressionValue;
final field = this.field;
final fieldIndex = this.fieldIndex;
final kind = this.kind;
final matchType = this.matchType;
return {
'caseSensitive': ?caseSensitive,
'expressionValue': ?expressionValue,
'field': ?field,
'fieldIndex': ?fieldIndex,
'kind': ?kind,
'matchType': ?matchType,
};
}