Stack constructor

Stack({
  1. required List<Widget> children,
  2. num? width,
  3. num? height,
  4. Alignment alignment = Alignment.topLeft,
  5. StackFit fit = StackFit.loose,
  6. Overflow clipBehavior = Overflow.clip,
  7. Key? key,
})

Implementation

Stack({
  required super.children,
  this.width,
  this.height,
  this.alignment = Alignment.topLeft,
  this.fit = StackFit.loose,
  this.clipBehavior = Overflow.clip,
  super.key,
});