mt method

Widget mt(
  1. double value
)

Applies margin only to the top side.

Implementation

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