toJson method

Map<String, dynamic> toJson()

Implementation

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