FloatyActionRouter constructor

FloatyActionRouter({
  1. int maxQueueSize = 100,
  2. QueueOverflowStrategy overflowStrategy = QueueOverflowStrategy.dropOldest,
})

Creates an action router for the main app side.

Implementation

FloatyActionRouter({
  this.maxQueueSize = 100,
  this.overflowStrategy = QueueOverflowStrategy.dropOldest,
}) : _isOverlay = false {
  _init();
}