bottomSet method

Positioned bottomSet(
  1. double value
)

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);
}