FileSystemError.notFound constructor

FileSystemError.notFound(
  1. 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.',
);