setBorderWidth method

void setBorderWidth(
  1. double width
)

Sets the width of the border lines in dp.

@param width

Implementation

void setBorderWidth(double width) {
  _borderPaint?.strokeWidth = Utils.convertDpToPixel(width);
}