advanceAndThen<T> method
T
advanceAndThen<T>(
- T then()
Implementation
T advanceAndThen<T>(T Function() then) {
advance();
return then.call();
}
T advanceAndThen<T>(T Function() then) {
advance();
return then.call();
}