deleteLocalById method

void deleteLocalById(
  1. Object id, {
  2. bool notify = true,
})
inherited

Deletes model with id from local storage.

Implementation

void deleteLocalById(Object id, {bool notify = true}) {
  final key = core.getKeyForId(type, id);
  deleteLocalByKeys([key], notify: notify);
}