Returns true if the script file exists.
true
Future<bool> exists() async { fileInstance ??= File(_filePath); _exists ??= await fileInstance!.exists(); return _exists!; }