ConversionOptions constructor

const ConversionOptions({
  1. required DataFormat targetFormat,
  2. CompressionCodec? compression,
  3. int compressionLevel = 6,
  4. List<int>? chunkShape,
  5. bool preserveAttributes = true,
  6. bool overwrite = false,
})

Implementation

const ConversionOptions({
  required this.targetFormat,
  this.compression,
  this.compressionLevel = 6,
  this.chunkShape,
  this.preserveAttributes = true,
  this.overwrite = false,
});