FFDownloadCodeSettings constructor
FFDownloadCodeSettings({})
Implementation
factory FFDownloadCodeSettings({
$core.bool? applyFixesToGithub,
$core.bool? generateLauncherIcon,
$core.bool? generateSplashScreen,
$core.bool? applyFixesToDownload,
$core.bool? generateAndroidAdaptiveIcon,
}) {
final result = create();
if (applyFixesToGithub != null)
result.applyFixesToGithub = applyFixesToGithub;
if (generateLauncherIcon != null)
result.generateLauncherIcon = generateLauncherIcon;
if (generateSplashScreen != null)
result.generateSplashScreen = generateSplashScreen;
if (applyFixesToDownload != null)
result.applyFixesToDownload = applyFixesToDownload;
if (generateAndroidAdaptiveIcon != null)
result.generateAndroidAdaptiveIcon = generateAndroidAdaptiveIcon;
return result;
}