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