Result<T>.ok constructor
Result<T>.ok (
- T value
Creates an instance of Result containing a value
Implementation
factory Result.ok(T value) => Ok(value);
Creates an instance of Result containing a value
factory Result.ok(T value) => Ok(value);