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