importPath property

String? get importPath

Implementation

String? get importPath {
  return switch (library?.isInSdk) {
    null || true => null,
    false => library?.uri.toString(),
  };
}