thenRun method

Future<T> thenRun(
  1. void action(
    1. T value
    )
)

Implementation

Future<T> thenRun(void Function(T value) action) {
  return then((value) {
    action(value);
    return value;
  });
}