Group: style
Maturity: stable
Dart SDK: >= 2.0.0 • (Linter v0.1.46)
Since info is static, may be staleAVOID private typedef functions used only once. Prefer inline function syntax.
BAD:
typedef void _F();
m(_F f);
GOOD:
m(void Function() f);
To enable the avoid_private_typedef_functions
lint,
add avoid_private_typedef_functions
under linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- avoid_private_typedef_functions