value property
T
value
final
Replacement value, including null for nullable fields.
const option = Some<String?>(null);
final value = option.value; // null
Implementation
final T value;
Replacement value, including null for nullable fields.
const option = Some<String?>(null);
final value = option.value; // null
final T value;