Returns the value if Result is Success or null otherwise.
T? get getOrNull => switch (this) { Success(value: final value) => value, _ => null, };