getValue method

Object? getValue(
  1. String stream
)

Returns the current value of a given data stream.

Implementation

Object? getValue(String stream) {
  return _mStorage?.getValue(stream);
}