resetTimerByName method
Implementation
Future resetTimerByName({
required String timerName,
required String groupName,
int? numSeconds,
bool forceStart = false,
}) async {
final timerData = _timerDatas['$groupName$timerName'];
if (timerData != null) {
await resetTimer(
timerData: timerData,
numSeconds: numSeconds,
forceStart: forceStart,
);
}
}