findFile method

Future<DocumentFile?> findFile(
  1. String displayName
)

Equivalent to DocumentFile.findFile.

If you want to check if a given document file exists by their displayName prefer using child instead.

Refer to details.

Implementation

Future<DocumentFile?> findFile(String displayName) =>
    saf.findFile(uri, displayName);