FileWriteOutput constructor

const FileWriteOutput({
  1. required bool success,
  2. required String message,
  3. int bytesWritten = 0,
  4. bool created = false,
  5. String? backupPath,
})

Implementation

const FileWriteOutput({
  required this.success,
  required this.message,
  this.bytesWritten = 0,
  this.created = false,
  this.backupPath,
});