initAsync method

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

Initialize any 'time-consuming' operations at the beginning. Initialize items essential to the Mobile Applications. Implement any asynchronous operations needed done at start up.

Implementation

@override
Future<bool> initAsync() async {
  return true;
}