toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final byteRange = this.byteRange;
  final codepointRange = this.codepointRange;
  final container = this.container;
  final contentLocations = this.contentLocations;
  return {
    'byteRange': ?byteRange,
    'codepointRange': ?codepointRange,
    'container': ?container,
    'contentLocations': ?contentLocations,
  };
}