TrackerItemWidget constructor

const TrackerItemWidget({
  1. Key? key,
  2. required String id,
  3. InViewNotifierWidgetBuilder? builder,
  4. DisplayNotifier? displayNotifier,
  5. TrackerStrategy trackerStrategy = TrackerStrategy.only,
  6. Widget? child,
  7. bool sliver = false,
})

Implementation

const TrackerItemWidget({
  Key? key,
  required this.id,
  this.builder,
  this.displayNotifier,
  this.trackerStrategy = TrackerStrategy.only,
  this.child,
  this.sliver = false,
}) : super(key: key);