delete method

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

Implementation

Future<void> delete(String path, {bool? recursive}) async {
  await _invoke("delete", {"path": path, "recursive": recursive});
}