Segment constructor

Segment({
  1. int partIndex = 0,
  2. int startIndex = 0,
  3. int endIndex = 0,
  4. String text = '',
})

Implementation

Segment({
  this.partIndex = 0,
  this.startIndex = 0,
  this.endIndex = 0,
  this.text = '',
}) : super(fullyQualifiedName);