delete method
Future<bool>
delete(
- String fileId, {
- HostedFileClientOptions? options,
- CancellationToken? cancellationToken,
override
Deletes a file. Returns true if deleted, false if not found.
Implementation
@override
Future<bool> delete(
String fileId, {
HostedFileClientOptions? options,
CancellationToken? cancellationToken,
}) =>
innerClient.delete(
fileId,
options: options,
cancellationToken: cancellationToken,
);