Range constructor

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

Implementation

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