createSplash function

void createSplash({
  1. String? path,
})

Create splash screens for Android and iOS

Implementation

void createSplash({String? path}) {
  var config = getConfig(configFile: path);
  checkConfig(config);
  createSplashByConfig(config);
}