enqueue method
Implementation
void enqueue(LocalNotification notification) {
_queue.add(QueuedNotification(notification));
if (!_processing) _processQueue();
}
void enqueue(LocalNotification notification) {
_queue.add(QueuedNotification(notification));
if (!_processing) _processQueue();
}