runAsync method
Run the StateX object's initAsync() function
Implementation
Future<bool> runAsync() async {
// Once true, initAsync() function is never run again
// unless the runAsync() function is overridden.
return _ranAsync = await initAsync();
}