initAsync method

  1. @override
Future<bool> initAsync()
override

Initialize any 'time-consuming' operations at the beginning. Implement any asynchronous operations needed done at start up.

Implementation

@override
Future<bool> initAsync() async {
  // Record the triggered event
  assert(() {
    if (_debugPrintEvents) {
      debugPrint('$_consoleLeadingLine initAsync() in $_consoleClassName');
    }
    return true;
  }());
  return true;
}