flutter_hooks_lint_plugin icon indicating copy to clipboard operation
flutter_hooks_lint_plugin copied to clipboard

edge case with cascade syntax

Open mj-hd opened this issue 3 years ago • 0 comments

final Something param;

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

  ...
}

mj-hd avatar Feb 01 '22 04:02 mj-hd