onInitAsync method

Future<bool> onInitAsync()
inherited

Used to complete asynchronous operations

Implementation

Future<bool> onInitAsync() async {
  var init = true;
  if (inInitAsync != null) {
    init = await inInitAsync!();
  }
  return init;
}