Either<L, R>.of constructor
Either<L, R>.of (
- R r
Return a Right(r)
.
Same as Either.right(r)
.
Implementation
factory Either.of(R r) => Right(r);
Return a Right(r)
.
Same as Either.right(r)
.
factory Either.of(R r) => Right(r);