Positioned constructor

Positioned({
  1. required Widget child,
  2. num? left,
  3. num? right,
  4. num? top,
  5. num? bottom,
  6. num? width,
  7. num? height,
  8. Key? key,
})

Implementation

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