stop method

dynamic stop()

Stop timer

Implementation

stop() {
  if (onStop != null) {
    onStop!();
  }
}