addActionFuture<T> method
添加Future任务
Implementation
FutureWait addActionFuture<T>(OnFutureAction? action) {
if (action == null) {
return this;
}
addFuture(action());
return this;
}
添加Future任务
FutureWait addActionFuture<T>(OnFutureAction? action) {
if (action == null) {
return this;
}
addFuture(action());
return this;
}