ifPresent method

Present<T> ifPresent(
  1. void action(
    1. T value
    )
)
override

Implementation

Present<T> ifPresent(final void Function(T value) action) => this..value.also(action);