toJson method

Map<String, dynamic> toJson()

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,
  };
}