pxy method

Widget pxy([
  1. double x = 16.0,
  2. double y = 16.0
])

Applies horizontal and vertical padding respectively to the widget.

Implementation

Widget pxy([double x = 16.0, double y = 16.0]) =>
    pOnly(l: x, t: y, r: x, b: y);