delete method

Future<void> delete(
  1. String path
)

Deletes path under the served root.

Implementation

Future<void> delete(String path) =>
    _call(DriveOp.delete, fields: {'path': path});