ElementLocation.unknown constructor

ElementLocation.unknown()

Useful when a Mirror does not have a SourceLocation, or representing types that don't have a class (void, dynamic, etc)

Implementation

factory ElementLocation.unknown() {
  return ElementLocation(uri: 'unknown', column: 1, line: 1);
}