initAsync method

  1. @override
  2. @mustCallSuper
Future<bool> initAsync()
inherited

Asynchronous operations must complete successfully.

Implementation

@override
@mustCallSuper
Future<bool> initAsync() async {
  // Optionally call super for debugPrint()
  assert(() {
    if (_debugPrintEvents) {
      debugPrint('$_consoleLeadingLine initAsync() in $this');
    }
    return true;
  }());
  return super.initAsync();
}