Either<L, R>.right constructor

const Either<L, R>.right(
  1. R value
)

Implementation

const factory Either.right(R value) = Right<L, R>.new;