margin method
Apply margin using EdgeInset
Equivalent to
Container(
margin: input
)
Implementation
NikuFlatButton margin(EdgeInsets padding) {
this._pt = padding.top;
this._pl = padding.left;
this._pb = padding.bottom;
this._pr = padding.right;
return this;
}