avoid_private_typedef_functions

Group: style

Maturity: stable

Dart SDK: >= 2.0.0 • (Linter v0.1.46)

Since info is static, may be stale
has-fix

View all Lint Rules

Using the Linter

AVOID private typedef functions used only once. Prefer inline function syntax.

BAD:

typedef void _F();
m(_F f);

GOOD:

m(void Function() f);

Usage

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