bottomSet method
Implementation
Positioned bottomSet(double value) {
if (this is Positioned) {
final thisWidget = this as Positioned;
return Positioned(
child: thisWidget.child,
left: thisWidget.left,
right: thisWidget.right,
bottom: value,
top: thisWidget.top,
);
}
return Positioned(bottom: value, child: this);
}