toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boundingPoly = this.boundingPoly;
final confidence = this.confidence;
final orientation = this.orientation;
final textAnchor = this.textAnchor;
return {
'boundingPoly': ?boundingPoly,
'confidence': ?confidence,
'orientation': ?orientation,
'textAnchor': ?textAnchor,
};
}