flutter_hooks_lint_plugin
flutter_hooks_lint_plugin copied to clipboard
edge case with cascade syntax
final Something param;
Widget build(BuildContext context) {
// this hook will be ignored unexpectedly
final foo = useRef<Something?>(null)..value = param;
...
}