stop static method

void stop({
  1. String? msg,
})

Implementation

static void stop({
  String? msg,
}) {
  print(msg ?? _defaultStopMessage);
  _timer?.cancel();
  _BlinkStar.stop();
}