restartExposurePointDisplayTimer method
void
restartExposurePointDisplayTimer()
Implementation
void restartExposurePointDisplayTimer() {
exposurePointDisplayTimer?.cancel();
exposurePointDisplayTimer = Timer(const Duration(seconds: 5), () {
lastExposurePoint.value = null;
});
}