start method

void start()

Implementation

void start() {
  Future.delayed(this.duration, () {
    if (!_isClose) {
      _backCall.call();
    }
  });
}