amGetIfSaved<K> static method

K? amGetIfSaved<K>(
  1. dynamic id
)

to Get the saved object associated with this id; Returns null if there is nothing saved;

Implementation

static K? amGetIfSaved<K>(id) {
  if (_stmem[id] == null) {
    return null;
  } else {
    return _stmem[id];
  }
}