ElPositioned.fill constructor

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

Implementation

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