UiPositioned.fill constructor

const UiPositioned.fill({
  1. Key? key,
  2. double? left = 0.0,
  3. double? top = 0.0,
  4. double? right = 0.0,
  5. double? bottom = 0.0,
  6. Duration? duration,
  7. Curve? curve,
  8. VoidCallback? onEnd,
  9. Widget? child,
})

Implementation

const UiPositioned.fill({
  super.key,
  this.left = 0.0,
  this.top = 0.0,
  this.right = 0.0,
  this.bottom = 0.0,
  super.duration,
  super.curve,
  super.onEnd,
  super.child,
})  : width = null,
      height = null;