You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Not sure if this is a bug or if it's based on the style guide of how members should be sorted.
class_SomeStatefulWidgetStateextendsState<SomeStatefulWidget> {
// ❌ autocomplete for override does not work hereString value1 ='';
// ❌ autocomplete for override does not work hereStringget value2 =>'';
// ✅ autocomplete for override works here voidmethod() {}
// ✅ autocomplete for override works here @overrideWidgetbuild(BuildContext context) {
returnContainer();
}
// ✅ autocomplete for override works here
}
To Reproduce
The code sample above and the screen recording below should have reproduction steps.
Expected behavior
I expect autocomplete to work anywhere within the class for overriding members.
Describe the bug
Not sure if this is a bug or if it's based on the style guide of how members should be sorted.
To Reproduce
The code sample above and the screen recording below should have reproduction steps.
Expected behavior
I expect autocomplete to work anywhere within the class for overriding members.
Screenshots
Screen.Recording.2022-01-15.at.9.51.48.PM.mov
Versions:
1.63.2
3.32.0
Additional Context
This could be another issue but with dart code:
Though it worked later when after adding the following import:
The text was updated successfully, but these errors were encountered: