mt method

Widget mt(
  1. double value
)

Implementation

Widget mt(double value) {
  return Container(
    margin: EdgeInsets.only(top: value),
    child: this,
  );
}