FileSystemError constructor

FileSystemError({
  1. required String message,
  2. required String path,
  3. required String operation,
  4. String errorId = 'fs_error',
  5. String? suggestion,
})

Implementation

FileSystemError({
  required this.message,
  required this.path,
  required this.operation,
  this.errorId = 'fs_error',
  this.suggestion,
});