initAsync method
Used to complete asynchronous operations
Implementation
@override
Future<bool> initAsync() async {
/// Initialize any 'time-consuming' operations at the beginning.
/// Initialize items essential to the Mobile Applications.
/// Implement any asynchronous operations needed done at start up.
return true;
}