SourceLocationBase constructor Null safety

SourceLocationBase(
  1. int offset,
  2. {dynamic sourceUrl,
  3. int? line,
  4. int? column}
)

Implementation

SourceLocationBase(int offset, {sourceUrl, int? line, int? column})
    : super(offset, sourceUrl: sourceUrl, line: line, column: column);