toJson method

Map<String, dynamic> toJson()

Implementation

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