amGet method

T amGet(
  1. dynamic id
)

Returns the object saved and associated with this id; if nothing is saved it Returns this parent object;

Implementation

T amGet(id) {
  if (_stmem[id] == null) {
    return this;
  } else {
    return _stmem[id];
  }
}