toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boundingBox = this.boundingBox;
  final confidence = this.confidence;
  final property = this.property;
  final text = this.text;
  return {
    'boundingBox': ?boundingBox,
    'confidence': ?confidence,
    'property': ?property,
    'text': ?text,
  };
}