dragLength property

double? dragLength

Distance that pointer should travel for fully open or close the sheet

Implementation

double? get dragLength => _dragLength;
void dragLength=(double? value)

Implementation

set dragLength(double? value) {
  if (_dragLength == value) return;
  assert(value == null || value > 0);
  _dragLength = value;
}