mb method

NikuRaisedButton mb(
  1. double margin
)

Apply margin to bottom

Equivalent to

Container(
  margin: EdgeInsets.only(bottom: input)
)

Implementation

NikuRaisedButton mb(double margin) {
  this._mb = margin;

  return this;
}