remove abstract method

Future<Result<void, FileError>> remove(
  1. String path, {
  2. bool recursive = false,
  3. bool force = false,
})

Removes a file or directory. With force, a missing path is not an error.

Implementation

Future<Result<void, FileError>> remove(
  String path, {
  bool recursive = false,
  bool force = false,
});