BatchOpts constructor

BatchOpts({
  1. required bool enabled,
  2. int? maxItems,
  3. int? maxSize,
  4. int? flushInterval,
})

Implementation

BatchOpts({
  required this.enabled,
  this.maxItems,
  this.maxSize,
  this.flushInterval,
});