toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endIndex = this.endIndex;
  final factIndexes = this.factIndexes;
  final score = this.score;
  final startIndex = this.startIndex;
  return {
    'endIndex': ?endIndex,
    'factIndexes': ?factIndexes,
    'score': ?score,
    'startIndex': ?startIndex,
  };
}