remove method
Removes a file or directory. With force, a missing path is not an
error.
Implementation
@override
Future<Result<void, FileError>> remove(
String path, {
bool recursive = false,
bool force = false,
}) => _fs.remove(path, recursive: recursive, force: force);