Positioned constructor

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

Creates a Positioned widget with optional offsets from each edge.

Implementation

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