border method

Niku border(
  1. Border border
)

Decorate with border using Border

Equivalent to

DecoratedBox(
  decoration: BoxDecoration(
    border: input
  )
)

Implementation

Niku border(Border border) {
  _widget = DecoratedBox(
    decoration: BoxDecoration(border: border),
    child: _widget,
  );

  return this;
}