FFDownloadCodeSettings constructor

FFDownloadCodeSettings({
  1. bool? applyFixesToGithub,
  2. bool? generateLauncherIcon,
  3. bool? generateSplashScreen,
  4. bool? applyFixesToDownload,
  5. bool? generateAndroidAdaptiveIcon,
})

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;
}