delete method

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

Implementation

Future<void> delete(String path, {bool? recursive = false}) async {
  (await room.sendRequest("storage.delete", {"path": path, "recursive": recursive}) as JsonResponse);
}