b method

NikuButton b(
  1. BorderSide input
)

Apply styling to border

Equivalent to

TextButton(
  border: MaterialStateProperty.resolveWith<OutlinedBorder>((states) {
    return base;
  });
)

Implementation

NikuButton b(BorderSide input) {
  this._side.updateAll(input);

  return this;
}