TrackSegmentPage constructor
TrackSegmentPage({})
Implementation
TrackSegmentPage({
required Iterable<TrackSegment> items,
required this.hasMore,
required this.snapshotUpperSegmentNumber,
required this.estimatedDecodedBytes,
this.nextCursor,
}) : items = UnmodifiableListView<TrackSegment>(
List<TrackSegment>.of(items, growable: false),
);