borderStyle method
Set border style
Equivalent to
OutlineButton(
borderSide: BorderSide(
style: input
)
);
Implementation
NikuOutlineButton borderStyle(BorderStyle style) {
this._borderSide = BorderSide(
color: this._borderSide?.color ?? Colors.black12,
width: this._borderSide?.width ?? 1,
style: style);
return this;
}