start method Null safety

void start()

Implementation

void start() {
  timer?.cancel();
  timer = Timer(Duration(seconds: periodInSeconds), () {
    evict();
  });
}