showLoader method

Future<void> showLoader()

Shows the loader on the screen.

This method asynchronously triggers the display of the loader by calling IDSAppLoader.showLoader.

Implementation

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