内容

avoid_private_typedef_functions

避免使用私有类型定义函数。

此规则自 Dart 2.0 起可用。

此规则提供了一个 快速修复

详情

#

**避免**仅使用一次的私有类型定义函数。首选内联函数语法。

错误示例

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

正确示例

dart
m(void Function() f);

用法

#

要启用 avoid_private_typedef_functions 规则,请在 analysis_options.yaml 文件中**linter > rules**下添加 avoid_private_typedef_functions

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_private_typedef_functions