RenderStack constructor

RenderStack({
  1. num? width,
  2. num? height,
  3. Alignment alignment = Alignment.topLeft,
  4. StackFit fit = StackFit.loose,
  5. Overflow clipBehavior = Overflow.clip,
})

Implementation

RenderStack({
  this.width,
  this.height,
  this.alignment = Alignment.topLeft,
  this.fit = StackFit.loose,
  this.clipBehavior = Overflow.clip,
});