top property

set top (double v)

Implementation

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