ClonifySettings constructor

ClonifySettings({
  1. required bool firebaseEnabled,
  2. required String firebaseSettingsFilePath,
  3. required bool fastlaneEnabled,
  4. required String fastlaneSettingsFilePath,
  5. required String companyName,
  6. required String defaultColor,
  7. required bool needsLauncherIcon,
  8. required bool needsSplashScreen,
  9. List<CustomField> customFields = const [],
})

Creates a new ClonifySettings instance.

Most parameters are required, with splashScreenAsset and customFields being optional.

Implementation

ClonifySettings({
  required this.firebaseEnabled,
  required this.firebaseSettingsFilePath,
  required this.fastlaneEnabled,
  required this.fastlaneSettingsFilePath,
  required this.companyName,
  required this.defaultColor,
  required this.needsLauncherIcon,
  required this.needsSplashScreen,
  required this.needsLogo,
  this.customFields = const [],
});