setDragInBorderWidth method

void setDragInBorderWidth(
  1. double value
)

Set Drag In Border Width

Implementation

void setDragInBorderWidth(double value) {
  if (_dragInBorderWidth != value) {
    _dragInBorderWidth = value;
    _state?.refresh();
  }
}