setVerticalDragType method

void setVerticalDragType(
  1. VerticalDragType? verticalDragType
)

Sets the type of adjustment.

Implementation

void setVerticalDragType(VerticalDragType? verticalDragType) {
  if (_isDisposed) {
    return;
  }

  value = value.copyWith(verticalDragType: verticalDragType);
}