ifPresent abstract method
Calls the consumer
if the wrapped value is present.
Implementation
Maybe<T> ifPresent(void Function(T value) consumer);
Calls the consumer
if the wrapped value is present.
Maybe<T> ifPresent(void Function(T value) consumer);