What is the correct way to acces a StatefulWidget's State from within the StatefulWidget?
I have tried having a instance variable in the StatefulWidget class and setting that with "widget._state = this;" in the "initState()" method in my State class, but sometimes it is null?
Thank you
Søren