WPositioned constructor

const WPositioned({
  1. Key? key,
  2. required Widget child,
  3. String? className,
  4. double? left,
  5. double? top,
  6. double? right,
  7. double? bottom,
  8. double? width,
  9. double? height,
})

Implementation

const WPositioned({
  super.key,
  required this.child,
  this.className,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
});