value property

T value
final

The contained value.

Examples

// prints "2"
print(const Ok<int, String>(2).value);

Implementation

final T value;