StacStack constructor

const StacStack({
  1. StacAlignment? alignment,
  2. StacTextDirection? textDirection,
  3. StacStackFit? fit,
  4. StacClip? clipBehavior,
  5. List<StacWidget>? children,
})

Creates a StacStack that lays out its children relative to its box.

Implementation

const StacStack({
  this.alignment,
  this.textDirection,
  this.fit,
  this.clipBehavior,
  this.children,
});