use_key_in_widget_constructors
Use key in widget constructors.
This rule is available as of Dart 2.8.
Rule sets: flutter
This rule has a quick fix available.
Details
#DO use key in widget constructors.
It's a good practice to expose the ability to provide a key when creating public widgets.
BAD:
dart
class MyPublicWidget extends StatelessWidget {
}
GOOD:
dart
class MyPublicWidget extends StatelessWidget {
MyPublicWidget({super.key});
}
Usage
#To enable the use_key_in_widget_constructors
rule,
add use_key_in_widget_constructors
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- use_key_in_widget_constructors
除非另有说明,文档之所提及适用于 Dart 3.5.4 版本,本页面最后更新时间: 2024-08-02。 查看文档源码 或者 报告页面问题。