removeRecord method

void removeRecord(
  1. MKey id
)
inherited

Implementation

void removeRecord(MKey id) {
  _data.remove(id);
  applyChanges((_) => _.unset(id));
}