StacPositioned constructor

const StacPositioned({
  1. double? left,
  2. double? top,
  3. double? right,
  4. double? bottom,
  5. double? width,
  6. double? height,
  7. required StacWidget? child,
})

Creates a positioned widget with optional positioning and sizing.

Implementation

const StacPositioned({
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
  required this.child,
});