location property

String location

Implementation

String get location => [
      filename,
      line == null && column != null ? '???' : line,
      column,
    ].where(isNotNull).join(':');