CsvMappedBatchDecoder<T> constructor

const CsvMappedBatchDecoder<T>(
  1. T? mapper(
    1. List<String> row
    ), {
  2. void onBatch(
    1. List<T> batch
    )?,
  3. void onDone()?,
})

Implementation

const CsvMappedBatchDecoder(this.mapper, {this.onBatch, this.onDone});