delete method

  1. @override
Future<void> delete(
  1. String fileFullPath
)
override

Passing fileFullPath, the full path of the storage, will delete files at that location.

ストレージのフルパスであるfileFullPathを渡すことでその位置にあるファイルを削除します。

Implementation

@override
Future<void> delete(String fileFullPath) async {
  await File(fileFullPath).delete();
}