start method
void
start()
开始任务
Implementation
void start() {
Future.delayed(this.duration, () {
if (!_isClose) {
_backCall.call();
}
});
}
开始任务
void start() {
Future.delayed(this.duration, () {
if (!_isClose) {
_backCall.call();
}
});
}