left property

L left

Gets the right value if this is an Either.left or throws if this is a Either.right.

Implementation

L get left {
  return fold<L>((left) => left, _noSuchElementException);
}