StatsAddColMerge constructor

StatsAddColMerge(
  1. Map config, {
  2. PackedDataCache? cache,
})

Create a new instance

Implementation

StatsAddColMerge(super.config, {super.cache})
    : file = File(config['path']),
      files = [for (var glob in config['files']) glob.toString()],
      cols = [
        for (int col in config['cols'] ?? [1]) col
      ].lockUnsafe,
      pkey = config['pkey'] ?? 0,
      min = config['min'] ?? 0,
      append = config['append'] ?? false;