initAsyncState method

Future<bool> initAsyncState(
  1. covariant State<StatefulWidget> state
)

Called with every StateX associated with this Controller Initialize any 'time-consuming' operations at the beginning. Implement any asynchronous operations needed done at start up.

Implementation

Future<bool> initAsyncState(covariant State state) async => true;