initAsync method

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

Used to complete asynchronous operations

Implementation

@override
Future<bool> initAsync() async {
  var init = await super.initAsync();
  if (init && inInitAsync != null) {
    init = await inInitAsync!();
  }
  return init;
}