positionedWith method

Widget positionedWith(
  1. ShadPosition position
)

Implementation

Widget positionedWith(ShadPosition position) {
  return Positioned(
    top: position.top,
    left: position.left,
    right: position.right,
    bottom: position.bottom,
    child: this,
  );
}