Fix UNUSED_ELEMENT_PARAMETER for unused field formal parameter. (#96684)

diff --git a/packages/flutter/lib/src/widgets/reorderable_list.dart b/packages/flutter/lib/src/widgets/reorderable_list.dart
index 0b2639a..a87176e 100644
--- a/packages/flutter/lib/src/widgets/reorderable_list.dart
+++ b/packages/flutter/lib/src/widgets/reorderable_list.dart
@@ -887,10 +887,10 @@
 ///
 /// The scroll velocity is controlled by the [velocityScalar]:
 ///
-/// velocity = <distance of overscroll> * [velocityScalar].
+/// velocity = <distance of overscroll> * [_kDefaultAutoScrollVelocityScalar].
 class _EdgeDraggingAutoScroller {
   /// Creates a auto scroller that scrolls the [scrollable].
-  _EdgeDraggingAutoScroller(this.scrollable, {this.onScrollViewScrolled, this.velocityScalar = _kDefaultAutoScrollVelocityScalar});
+  _EdgeDraggingAutoScroller(this.scrollable, {this.onScrollViewScrolled});
 
   // An eyeball value
   static const double _kDefaultAutoScrollVelocityScalar = 7;
@@ -905,12 +905,6 @@
   /// in between each scroll.
   final VoidCallback? onScrollViewScrolled;
 
-  /// The velocity scalar per pixel over scroll.
-  ///
-  /// How the velocity scale with the over scroll distance. The auto scroll
-  /// velocity = <distance of overscroll> * velocityScalar.
-  final double velocityScalar;
-
   late Rect _dragTargetRelatedToScrollOrigin;
 
   /// Whether the auto scroll is in progress.
@@ -1002,7 +996,7 @@
       _scrolling = false;
       return;
     }
-    final Duration duration = Duration(milliseconds: (1000 / velocityScalar).round());
+    final Duration duration = Duration(milliseconds: (1000 / _kDefaultAutoScrollVelocityScalar).round());
     await scrollable.position.animateTo(
       newOffset,
       duration: duration,