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