Creates a new instance of Result based on the value being passed.
Result
Resolved type of the promise on success.
Rejected type of the promise on failure.
Error to wrap if the provided value is null.
null
Value to wrap, unless it's null.
If null or undefined, it returns Err(error). Otherwise, it returns Ok(value).
undefined
Err(error)
Ok(value)
Creates a new instance of
Result
based on the value being passed.