run method

Present<T> run(
  1. void action(
    1. Present<T>
    )
)
override

Implementation

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