PositionableWidget constructor

PositionableWidget({
  1. Key? key,
  2. required Widget child,
  3. bool edgeAble = false,
  4. bool dragAble = false,
  5. bool indexAble = false,
  6. EdgeInsets edgeInsets = EdgeInsets.zero,
  7. double? right,
  8. double? left,
  9. double? top,
  10. double? bottom,
})

Implementation

PositionableWidget({
  Key? key,
  required this.child,
  this.edgeAble = false,
  this.dragAble = false,
  this.indexAble = false,
  this.edgeInsets = EdgeInsets.zero,
  this.right,
  this.left,
  this.top,
  this.bottom,
}) : super(key: key ?? ValueKey(_index++));