positioned method

T positioned({
  1. double? left,
  2. double? top,
  3. double? right,
  4. double? bottom,
  5. double? width,
  6. double? height,
  7. Duration? duration,
  8. Curve? curve,
  9. VoidCallback? onEnd,
})

Adds UiPositioned.

Implementation

T positioned({
  double? left,
  double? top,
  double? right,
  double? bottom,
  double? width,
  double? height,
  Duration? duration,
  Curve? curve,
  VoidCallback? onEnd,
}) {
  return addChild(UiPositioned(
    left: left,
    top: top,
    right: right,
    bottom: bottom,
    height: height,
    width: width,
    duration: duration,
    curve: curve,
    onEnd: onEnd,
  ));
}