toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final detectedValue = this.detectedValue;
final expectedValue = this.expectedValue;
final field = this.field;
return {
'detectedValue': ?detectedValue,
'expectedValue': ?expectedValue,
'field': ?field,
};
}