tryGet method

RType? tryGet(
  1. KType recordId
)

Implementation

RType? tryGet(KType recordId) {
  if (recordId == null) return null;
  var s = _getOrCreateStream(recordId);
  return s.currentValue;
}