Reputation: 14550
The docs says implementations must call super. And there are even questions about where to.
But I boldly did not call it on an annotated method (State.initState
) I overrode (on flutter's State
) and everything compiled and worked without any problem.
So, Is this implied by the compiler (or flutter tooling?) and super was called behind my back? Or does the static analyzer doesn't know how to enforce this?
Upvotes: 0
Views: 317