FileHashProgress constructor

FileHashProgress({
  1. required int processedBytes,
  2. required int totalBytes,
  3. bool isComplete = false,
  4. String? hash,
})

Implementation

FileHashProgress({
  required this.processedBytes,
  required this.totalBytes,
  this.isComplete = false,
  this.hash,
});