read method

  1. @override
Future<Uint8List> read(
  1. String fileFullPath
)
override

By passing fileFullPath, the full path of the storage, data can be retrieved from that path.

ストレージのフルパスであるfileFullPathを渡すことでそのパスからデータを取得することが出来ます。

Implementation

@override
Future<Uint8List> read(String fileFullPath) async {
  return await File(fileFullPath).readAsBytes();
}