Union<L, R>.right constructor
Union<L, R>.right (
- R right
Creates a Union with the given value of type R
.
Implementation
factory Union.right(R right) => _Right(right);
Creates a Union with the given value of type R
.
factory Union.right(R right) => _Right(right);