-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-quick-fixIssues with analysis server (quick) fixesIssues with analysis server (quick) fixestype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
void example() {
// https://dart.dev/tools/diagnostic-messages#missing_required_argument
Listener();
}
class Listener {
final void Function() onA;
final void Function(String) onB;
final void Function(String, String) onC;
Listener({
required this.onA,
required this.onB,
required this.onC,
});
}
... produces the following quick-fixes:
I would have assumed Add all required arguments
was an available quick fix, but it was not.
Adrian-Samoticha, TimWhiting, halildurmus, dark-chocolate, jonahwilliams and 4 more
Metadata
Metadata
Assignees
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-quick-fixIssues with analysis server (quick) fixesIssues with analysis server (quick) fixestype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug