FileSystemError.notFound constructor
FileSystemError.notFound(
- String path
Implementation
factory FileSystemError.notFound(String path) => FileSystemError(
message: 'File not found: $path',
path: path,
operation: 'read',
errorId: 'file_not_found',
suggestion: 'Check the file path and try again.',
);