enqueue method

void enqueue(
  1. LocalNotification notification
)

Implementation

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