exists abstract method

Future<bool> exists(
  1. String fileFullPath
)

By passing fileFullPath, which is the full path of the storage, it checks if the file exists at that location.

Returns true if the file exists.

ストレージのフルパスであるfileFullPathを渡すことでその位置にファイルがあるかをチェックします。

ファイルが存在する場合trueを返します。

Implementation

Future<bool> exists(String fileFullPath);