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