Stack constructor

Stack({
  1. AlignmentGeometry alignment = Alignment.topLeft,
  2. StackFit fit = StackFit.loose,
  3. Overflow overflow = Overflow.clip,
  4. List<Widget> children = const <Widget>[],
})

Implementation

Stack({
  this.alignment = Alignment.topLeft,
  this.fit = StackFit.loose,
  this.overflow = Overflow.clip,
  List<Widget> children = const <Widget>[],
}) : super(children: children);