release_schedule/lib/model/delayed_function_caller.dart

22 lines
450 B
Dart

import 'dart:async';
class DelayedFunctionCaller {
final Function function;
final Duration duration;
Timer? _timer;
DelayedFunctionCaller(this.function, this.duration);
void call() {
// If a timer is already active, return.
if (_timer != null && _timer!.isActive) {
return;
}
// Create a timer that calls the function after the specified duration.
_timer = Timer(duration, () {
function();
});
}
}