Position constructor

Position({
  1. int? column,
  2. int? line,
})

Implementation

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