PhotoBatchSaveQueue constructor
- required PhotoBatchSaver saveBatch,
- int batchSize = defaultPhotoBatchSize,
- VoidCallback? onChanged,
- PhotoBatchErrorHandler? onBackgroundError,
Implementation
PhotoBatchSaveQueue({
required this.saveBatch,
this.batchSize = defaultPhotoBatchSize,
this.onChanged,
this.onBackgroundError,
}) : assert(batchSize > 0);