initAsync method

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

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;
}