fetchURI method

  1. @override
Future<String> fetchURI(
  1. String fileRelativePath
)
override

Passing fileRelativePath, a path relative to the storage root, returns the full path to the file at that location.

ストレージのルートからの相対パスであるfileRelativePathを渡すことでその位置にファイルのフルパスを返します。

Implementation

@override
Future<String> fetchURI(String fileRelativePath) async =>
    "${await documentDirectory}/$fileRelativePath";