BatchingAnalyticsAdapter constructor

BatchingAnalyticsAdapter(
  1. AirAnalyticsAdapter _delegate, {
  2. int batchSize = 10,
  3. Duration maxDelay = const Duration(seconds: 30),
})

Implementation

BatchingAnalyticsAdapter(
  this._delegate, {
  this.batchSize = 10,
  this.maxDelay = const Duration(seconds: 30),
});