start method

void start()

Implementation

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