delete method

  1. @MPI(name: "mesh.fs.delete")
Future<void> delete(
  1. List<String> paths, {
  2. Context? ctx,
})

Delete files.

Implementation

@MPI(name: "mesh.fs.delete")
Future<void> delete(List<String> paths, {Context? ctx}) {
  throw UnimplementedError('delete() has not been implemented.');
}