I am new to flutter and was studying with StatefulWidget
but I couldn't clearly understand the following term
class MyApp extends StatefulWidget
{
@override
_myState createState() => _myState();
}
I tried this
@override
return _myState();
And its clear to me, but we user _myState before createState() method.