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