wrong_ number_ of_ parameters_ for_ setter
Details about the 'wrong_number_of_parameters_for_setter' diagnostic produced by the Dart analyzer.
Setters must declare exactly one required positional parameter.
Description
#The analyzer produces this diagnostic when a setter is found that doesn't declare exactly one required positional parameter.
Examples
#
The following code produces this diagnostic because the setter s declares
two required parameters:
class C {
set s(int x, int y) {}
}
The following code produces this diagnostic because the setter s declares
one optional parameter:
class C {
set s([int? x]) {}
}
Common fixes
#Change the declaration so that there's exactly one required positional parameter:
class C {
set s(int x) {}
}
Unless stated otherwise, the documentation on this site reflects Dart 3.10.3. Report an issue.