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