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