toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boundingPoly = this.boundingPoly;
  final confidence = this.confidence;
  final layoutId = this.layoutId;
  final layoutType = this.layoutType;
  final page = this.page;
  return {
    'boundingPoly': ?boundingPoly,
    'confidence': ?confidence,
    'layoutId': ?layoutId,
    'layoutType': ?layoutType,
    'page': ?page,
  };
}