record_type_one_positional_field_no_trailing_comma
Details about the 'record_type_one_positional_field_no_trailing_comma' diagnostic produced by the Dart analyzer.
A record type with exactly one positional field requires a trailing comma.
Description
#The analyzer produces this diagnostic when a record type annotation with a single positional field doesn't have a trailing comma after the field.
In some locations a record type with a single positional field could also be a parenthesized expression. A trailing comma is required to disambiguate these two valid interpretations.
Example
#The following code produces this diagnostic because the record type has one positional field, but doesn't have a trailing comma:
void f((int) r) {}
Common fixes
#Add a trailing comma:
void f((int,) r) {}
除非另有说明,文档之所提及适用于 Dart 3.11.0 版本报告页面问题.