m method
Apply margin to top
Equivalent to
Container(
margin: EdgeInsets.all(input)
)
Implementation
NikuRaisedButton m(double margin) {
this._mt = margin;
this._ml = margin;
this._mb = margin;
this._mr = margin;
return this;
}
Apply margin to top
Equivalent to
Container(
margin: EdgeInsets.all(input)
)
NikuRaisedButton m(double margin) {
this._mt = margin;
this._ml = margin;
this._mb = margin;
this._mr = margin;
return this;
}