right property

void right=(double v)

Implementation

set right(double v) {
  if (_latest is Positioned)
    _applyPositioned(right: v);
  else
    _add((w) => Positioned(right: v, child: w));
}