runInitAsync method

bool runInitAsync()

Call initAsync() all the time if returns true. Conditional calls initAsync() creating a Future with every rebuild

Implementation

bool runInitAsync() {
  // Record the triggered event
  assert(() {
    if (_debugPrintEvents) {
      debugPrint('$_consoleLeadingLine runInitAsync() in $_consoleClassName');
    }
    return true;
  }());
  return true;
}