deleteAllEntries method

Future deleteAllEntries({
  1. bool withRelatedItems = true,
})

Remove all entries in this table permenantly.

Implementation

Future deleteAllEntries({bool withRelatedItems = true}) async {
  await delete(withRelatedItems: withRelatedItems);
}