15
6
PREFER using the built-in typedef VoidCallback instead of declaring a custom one.
VoidCallback
final void Function() cb;
final VoidCallback cb;
To enable the prefer_void_callback rule, add prefer_void_callback under custom_lint > rules in your analysis_options.yaml file:
prefer_void_callback
analysis_options.yaml
custom_lint: rules: - prefer_void_callback