Value<T> constructor

Value<T>(
  1. T value
)

Implementation

factory Value(T value) => _Value<T>(value);