BorderSide constructor

const BorderSide({
  1. BorderStyle? style = BorderStyle.solid,
  2. Color? color,
  3. Unit? width,
})

Create a border side with the given style, color, and width.

Implementation

const BorderSide({this.style = BorderStyle.solid, this.color, this.width});