join<R> method

  1. @override
R join<R>(
  1. R mapFirst(
    1. A
    )
)
override

Transforms the element in the union to a new Type

@param

Implementation

@override
R join<R>(R Function(A) mapFirst) {
  return _union.join(mapFirst);
}