SourceCodeInfoLocation constructor

const SourceCodeInfoLocation({
  1. List<int> path = const [],
  2. List<int> span = const [],
  3. String? leadingComments,
  4. String? trailingComments,
  5. List<String> leadingDetachedComments = const [],
})

Implementation

const SourceCodeInfoLocation({
  this.path = const [],
  this.span = const [],
  this.leadingComments,
  this.trailingComments,
  this.leadingDetachedComments = const [],
});