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