```dart final Something param; Widget build(BuildContext context) { // this hook will be ignored unexpectedly final foo = useRef<Something?>(null)..value = param; ... } ```