doesFileExist function

Future<bool> doesFileExist(
  1. String? filePath
)

Implementation

Future<bool> doesFileExist(String? filePath) async {
  return false;
}