Integration<T> constructor

const Integration<T>({
  1. void onInit()?,
  2. void onIdentify(
    1. IdentifyEvent event
    )?,
  3. void onTrack(
    1. TrackEvent event
    )?,
  4. void onReset()?,
  5. void onPageView(
    1. PageViewEvent event
    )?,
})

Implementation

const Integration({
  this.onInit,
  this.onIdentify,
  this.onTrack,
  this.onReset,
  this.onPageView,
});