createSplash function
Create splash screens for Android and iOS
Implementation
void createSplash({
required String? path,
required String? flavor,
}) {
if (flavor != null) {
print(
'''
╔════════════════════════════════════════════════════════════════════════════╗
║ Setting up flavors! ║
╚════════════════════════════════════════════════════════════════════════════╝
===> Setting up the $flavor flavor.
''',
);
}
final config = getConfig(configFile: path, flavor: flavor);
_createSplashByConfig(config);
}