TrackerScrollWidget constructor

TrackerScrollWidget({
  1. Key? key,
  2. required ScrollView child,
  3. String? id,
  4. List<String> initHitIds = const [],
  5. Duration throttleDuration = const Duration(milliseconds: 200),
  6. HitViewPortCondition? hitViewPortCondition,
  7. ScrollStrategy scrollStrategy = ScrollStrategy.end,
  8. TrackerStrategy trackerStrategy = TrackerStrategy.only,
})

Implementation

TrackerScrollWidget({
  Key? key,
  required this.child,
  this.id,
  this.initHitIds = const [],
  this.throttleDuration = const Duration(milliseconds: 200),
  this.hitViewPortCondition,
  this.scrollStrategy = ScrollStrategy.end,
  this.trackerStrategy = TrackerStrategy.only,
}) : super(key: key);