toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final shardCount = this.shardCount;
  final shardIndex = this.shardIndex;
  final textOffset = this.textOffset;
  return {
    'shardCount': ?shardCount,
    'shardIndex': ?shardIndex,
    'textOffset': ?textOffset,
  };
}