tryRemoveSplash function

Future<void> tryRemoveSplash()

Function that will be called on supported platforms to remove the splash screens.

Implementation

Future<void> tryRemoveSplash() async {
  print('Restoring animated\'s default white native splash screen...');
  await tryCreateSplashByConfig({'color': '#ffffff'});
}