deleteLocal method

void deleteLocal(
  1. T model, {
  2. bool notify = true,
})
inherited

Deletes model of type T from local storage.

Implementation

void deleteLocal(T model, {bool notify = true}) {
  deleteLocalByKeys([model._key!], notify: notify);
}