hideLoader method

Future<void> hideLoader()

Hides the loader from the screen.

This method asynchronously triggers the hiding of the loader by calling IDSAppLoader.hideLoader.

Implementation

Future<void> hideLoader() async {
  await _appLoader.hideLoader();
}