Maybe<T>.just constructor
const
Maybe<T>.just (
- T value
Type representing the Just state of a value, which would be equivalent to having a value
Implementation
const factory Maybe.just(T value) = Just<T>;