Positioned constructor

const Positioned({
  1. required Widget child,
  2. String? top,
  3. String? right,
  4. String? bottom,
  5. String? left,
  6. String? inset,
  7. ArcaneStyleData? style,
  8. Key? key,
})

Implementation

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