mx method

Widget mx(
  1. double value
)

Applies horizontal margin (left and right).

Implementation

Widget mx(double value) => Padding(
  padding: EdgeInsets.symmetric(horizontal: value),
  child: this,
);