initAsync method
Used to complete asynchronous operations
Implementation
@override
Future<bool> initAsync() async {
/// Set _useMaterial or _useCupertino to true
_useMaterialOrCupertino();
var init = await onInitAsync();
if (init) {
init = await super.initAsync();
}
return init;
}