CompressionResult constructor

const CompressionResult({
  1. required String originalPath,
  2. required String compressedPath,
  3. required BigInt originalSize,
  4. required BigInt compressedSize,
})

Implementation

const CompressionResult({
  required this.originalPath,
  required this.compressedPath,
  required this.originalSize,
  required this.compressedSize,
});