$sourceCodeFile property
String?
get
$sourceCodeFile
Implementation
String? get $sourceCodeFile {
String? p = $sourceFile;
if (p == null) {
return null;
}
return "${Directory.current.path}${Platform.pathSeparator}lib${Platform.pathSeparator}${p.split("/").sublist(1).join(Platform.pathSeparator)}";
}