FileSystemError.accessDenied constructor

FileSystemError.accessDenied(
  1. String path
)

Implementation

factory FileSystemError.accessDenied(String path) => FileSystemError(
  message: 'Access denied: $path',
  path: path,
  operation: 'access',
  errorId: 'access_denied',
  suggestion: 'Check file permissions.',
);