Returns T on Ok, or null on Err
T
null
T? unwrapOrNull() => switch (this) { Ok(:final T value) => value, Err() => null, };