ms method

Widget ms(
  1. double value
)

Applies margin only to the start (left) side.

Implementation

Widget ms(double value) => Padding(
  padding: EdgeInsets.only(left: value),
  child: this,
);