NeitherPresent<A, B, R> constructor

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

Implementation

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