border method
Decorate with border using Border
Equivalent to
DecoratedBox(
decoration: BoxDecoration(
border: input
)
)
Implementation
Niku border(Border border) => Niku(
DecoratedBox(
decoration: BoxDecoration(border: border),
child: this._widget,
),
);