ParseErrorLocation constructor

const ParseErrorLocation({
  1. required int offset,
  2. required int rangeStart,
  3. required int rangeEnd,
  4. String? hint,
})

Implementation

const ParseErrorLocation({
  required this.offset,
  required this.rangeStart,
  required this.rangeEnd,
  this.hint,
});