Location constructor

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

Implementation

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