toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final chunkingConfig = this.chunkingConfig;
  final enableImageAnnotation = this.enableImageAnnotation;
  final enableTableAnnotation = this.enableTableAnnotation;
  final returnBoundingBoxes = this.returnBoundingBoxes;
  final returnImages = this.returnImages;
  return {
    'chunkingConfig': ?chunkingConfig,
    'enableImageAnnotation': ?enableImageAnnotation,
    'enableTableAnnotation': ?enableTableAnnotation,
    'returnBoundingBoxes': ?returnBoundingBoxes,
    'returnImages': ?returnImages,
  };
}