delete method

Future<void> delete(
  1. String path, {
  2. bool recursive = false,
})

Implementation

Future<void> delete(String path, {bool recursive = false}) async =>
    await deleteFile(path.replaceSeparator(), recursive: recursive);