andThen method

Validation<T> andThen(
  1. void action(
    1. T t
    )
)

Implementation

Validation<T> andThen(void Function(T t) action) {
  forEach(action);
  return this;
}