mb method

Widget mb(
  1. double value
)

Applies margin only to the bottom side.

Implementation

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