delete static method

Future<bool> delete({
  1. required String path,
})

finally deletes a file stored in the given path of your application's fake filesystem

Implementation

static Future<bool> delete({
  required String path,
}) {
  return deleteInternalPath(path: path);
}