UnboundedStack constructor

const UnboundedStack({
  1. Key? key,
  2. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  3. TextDirection? textDirection,
  4. StackFit fit = StackFit.loose,
  5. Clip clipBehavior = Clip.hardEdge,
  6. List<Widget> children = const <Widget>[],
})

Implementation

const UnboundedStack({
  super.key,
  super.alignment,
  super.textDirection,
  super.fit,
  super.clipBehavior,
  super.children,
});