createSavedTimers method
Implementation
void createSavedTimers(){
if(bookingHistory.value.bookingsList?.isNotEmpty ?? false){
final bookings = bookingHistory.value.bookingsList!;
bookings.forEachIndexed((index,e){
if(e.hasTimer){
if(!savedTimer.containsKey(e.id!)){
startSavedTimer(e);
}
}
});
}
}