existsSync method
Returns true if the script file exists.
Implementation
bool existsSync() {
fileInstance ??= File(_filePath);
_exists ??= fileInstance!.existsSync();
return _exists!;
}
Returns true if the script file exists.
bool existsSync() {
fileInstance ??= File(_filePath);
_exists ??= fileInstance!.existsSync();
return _exists!;
}