WStack constructor

const WStack({
  1. Key? key,
  2. required List<Widget> children,
  3. String? className,
  4. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  5. TextDirection? textDirection,
  6. StackFit fit = StackFit.loose,
  7. Clip clipBehavior = Clip.hardEdge,
  8. EdgeInsetsGeometry? padding,
  9. EdgeInsetsGeometry? margin,
  10. Color? backgroundColor,
})

Implementation

const WStack({
  super.key,
  required this.children,
  this.className,
  this.alignment = AlignmentDirectional.topStart,
  this.textDirection,
  this.fit = StackFit.loose,
  this.clipBehavior = Clip.hardEdge,
  this.padding,
  this.margin,
  this.backgroundColor,
});