rightSet method

Positioned rightSet(
  1. double value
)

Implementation

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