TimerMessagingQueue constructor

TimerMessagingQueue({
  1. required MessagingQueueDispatcher dispatcher,
  2. bool isPaused = true,
  3. ResumeQueueStrategy resumeStrategy = ResumeQueueStrategy.nothing,
  4. Duration timing = const Duration(milliseconds: 500),
})

Constructor

Implementation

TimerMessagingQueue({
  required super.dispatcher,
  super.isPaused = true,
  super.resumeStrategy = ResumeQueueStrategy.nothing,
  this.timing = const Duration(milliseconds: 500),
}) {
  _init();
}