PhotoBatchSaveQueue constructor

PhotoBatchSaveQueue({
  1. required PhotoBatchSaver saveBatch,
  2. int batchSize = defaultPhotoBatchSize,
  3. VoidCallback? onChanged,
  4. PhotoBatchErrorHandler? onBackgroundError,
})

Implementation

PhotoBatchSaveQueue({
  required this.saveBatch,
  this.batchSize = defaultPhotoBatchSize,
  this.onChanged,
  this.onBackgroundError,
}) : assert(batchSize > 0);