ElPositioned constructor

const ElPositioned({
  1. Key? key,
  2. required Object id,
  3. int index = 0,
  4. double? left,
  5. double? top,
  6. double? right,
  7. double? bottom,
  8. double? width,
  9. double? height,
  10. required Widget child,
})

Implementation

const ElPositioned({
  super.key,
  required this.id,
  this.index = 0,
  super.left,
  super.top,
  super.right,
  super.bottom,
  super.width,
  super.height,
  required super.child,
}) : assert(left == null || right == null || width == null),
     assert(top == null || bottom == null || height == null);