SecondPresent<A, B, R> constructor

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

Implementation

const SecondPresent(final R Function(Optional<A> first, B second) mapper) : super(mapper);