StoreValue<T> constructor

StoreValue<T>(
  1. T initialValue
)

Implementation

StoreValue(T initialValue) : super() {
  _value = initialValue;
}