runAsync method

Future<bool> runAsync()
inherited

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();
}