Flow.through constructor

const Flow.through(
  1. Iterable<Widget> children, {
  2. Key? key,
  3. FlowType type = FlowType.stack,
})

Creates a Stack

Implementation

const Flow.through(
  this.children, {
  super.key,
  this.type = FlowType.stack,
});