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
Currently when I create a class with a final parameter, I have a hint from the IDE to add that field into the constructor. Currently it creates as a simple parameter, such as MyClass(this.myField), and I can also change it to a normal parameter, where it goes into the initialization list.
Since Flutter uses lots of named parameters, it will be very helpful if we could have the option to also have that field being added into the constructor as a named parameter.