initAsync method

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

Used to complete asynchronous operations

Implementation

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