Nester.queue constructor

Nester.queue(
  1. List<Widget Function(dynamic ({int? skip, int? take}))> children, {
  2. Key? key,
})

Manage the widgets list like a queue. Each time will be called the passed function will be consumed a child inside the queue.

Implementation

Nester.queue(List<Widget Function(Function({int? skip, int? take}))> children,
    {Key? key})
    : type = _NesterTypes.queue,
      children = children.toList(),
      super(key: key);