MaybeStack constructor

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

Implementation

const MaybeStack({
  super.key,
  this.fit = StackFit.loose,
  this.alignment = AlignmentDirectional.topStart,
  this.children = const [],
  this.clipBehavior = Clip.hardEdge,
  this.textDirection,
});