delete method
- bool force = false,
Deletes this item.
If force is true, deletes even if the item has revisions.
await item.delete();
await item.delete(force: true); // Delete with all revisions
Implementation
Future<void> delete({bool force = false}) async {
await client.deleteItem(kref.uri, force: force);
}