Range constructor

Range({
  1. int? endIndex,
  2. String? segmentId,
  3. int? startIndex,
})

Implementation

Range({
  this.endIndex,
  this.segmentId,
  this.startIndex,
});