SourceMapSpan constructor

SourceMapSpan(
  1. SourceLocation start,
  2. SourceLocation end,
  3. String text, {
  4. bool isIdentifier = false,
})

Implementation

SourceMapSpan(SourceLocation start, SourceLocation end, String text,
    {this.isIdentifier = false})
    : super(start, end, text);