py property

set py (double v)

Implementation

set py(double v) {
  final l = _latest;

  if (l is Padding) return _applyPadding(l.padding, top: v, bottom: v);

  _add(
    (w) => Padding(padding: EdgeInsets.symmetric(vertical: v), child: w),
  );
}