Position constructor

Position({
  1. int? column,
  2. int? length,
  3. int? line,
  4. int? offset,
})

Implementation

Position({
  this.column,
  this.length,
  this.line,
  this.offset,
});