TraceableWidget constructor

const TraceableWidget({
  1. Key? key,
  2. required Widget child,
  3. String? actionName,
  4. String? pvId,
  5. bool? updatePvIdAfterPop,
  6. String? path,
  7. Map<String, String>? dimensions,
  8. Campaign? campaign,
  9. MatomoTracker? tracker,
  10. PerformanceInfo? performanceInfo,
})

Implementation

const TraceableWidget({
  super.key,
  required this.child,
  this.actionName,
  this.pvId,
  this.updatePvIdAfterPop,
  this.path,
  this.dimensions,
  this.campaign,
  this.tracker,
  this.performanceInfo,
});