prefer_asserts_with_message
Missing a message in an assert.
Description
#The analyzer produces this diagnostic when an assert statement doesn't have a message.
Example
#The following code produces this diagnostic because there's no message in the assert statement:
dart
void f(String s) {
assert(s.isNotEmpty);
}
Common fixes
#Add a message to the assert statement:
dart
void f(String s) {
assert(s.isNotEmpty, 'The argument must not be empty.');
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。