Streamable<T> constructor

Streamable<T>(
  1. T defaultValue
)

Classes containing this object need to implement Forgettable

Implementation

Streamable(T defaultValue) {
  value = defaultValue;
}