AStack constructor

const AStack({
  1. Key? key,
  2. required List<Widget> children,
  3. Clip clipBehavior = Clip.none,
  4. OverflowBarAlignment overflowAlignment = OverflowBarAlignment.start,
  5. VerticalDirection overflowDirection = VerticalDirection.down,
  6. double overflowSpacing = 0.0,
  7. double spacing = 0.0,
  8. TextDirection? textDirection,
})

Implementation

const AStack(
    {super.key,
    required this.children,
    this.clipBehavior = Clip.none,
    this.overflowAlignment = OverflowBarAlignment.start,
    this.overflowDirection = VerticalDirection.down,
    this.overflowSpacing = 0.0,
    this.spacing = 0.0,
    this.textDirection});