Union<L, R>.left constructor

Union<L, R>.left(
  1. L left
)

Creates a Union with the given value of type L.

Implementation

factory Union.left(L left) => _Left(left);