cancel method

dynamic cancel()

Implementation

cancel() {
  if (null != _timer) {
    _timer?.cancel();
  }
}