toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final chunkId = this.chunkId;
  final fileId = this.fileId;
  final pageSpan = this.pageSpan;
  final text = this.text;
  return {
    'chunkId': ?chunkId,
    'fileId': ?fileId,
    'pageSpan': ?pageSpan,
    'text': ?text,
  };
}