bottom property

set bottom (double v)

Implementation

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