BothPresent<A, B, R> constructor

const BothPresent<A, B, R>(
  1. R mapper(
    1. A first,
    2. B second
    )
)

Implementation

const BothPresent(final R Function(A first, B second) mapper) : super(mapper);