SourceLocation constructor

SourceLocation({
  1. required int? parentIndex,
  2. required int index,
})

Implementation

SourceLocation({
  required this.parentIndex,
  required this.index,
});