Positioned constructor

const Positioned({
  1. int? left,
  2. int? top,
  3. int? width,
  4. int? height,
  5. required Widget child,
})

Implementation

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