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