right<L, R> static method
Creates a Right value (typically representing success)
Implementation
static Either<L, R> right<L, R>(R value) => Right(value);
Creates a Right value (typically representing success)
static Either<L, R> right<L, R>(R value) => Right(value);