getOrPut method
Implementation
Record<V> getOrPut(MKey id, [V? value]) => runInAction(() {
return _data.putIfAbsent(id, () => _createRecord(id, value));
});
Record<V> getOrPut(MKey id, [V? value]) => runInAction(() {
return _data.putIfAbsent(id, () => _createRecord(id, value));
});