mt method

NikuRaisedButton mt(
  1. double margin
)

Apply margin to top

Equivalent to

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

Implementation

NikuRaisedButton mt(double margin) {
  this._mt = margin;

  return this;
}