resultOrNull property
T?
get
resultOrNull
Returns the result a the specified value
Implementation
T? get resultOrNull => switch (this) {
Success(value: final v) => v,
_ => null,
};
Returns the result a the specified value
T? get resultOrNull => switch (this) {
Success(value: final v) => v,
_ => null,
};