mxy method

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

Applies horizontal and vertical margin respectively to the widget.

Implementation

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