onStart method
Callback when this executor is started. Returns true if successfully started, false otherwise.
Implementation
@override
Future<bool> onStart() async {
timer = Timer.periodic(configuration!.period, (_) => onTrigger());
return true;
}