ClonifySettings constructor
ClonifySettings({
- required bool firebaseEnabled,
- required String firebaseSettingsFilePath,
- required bool fastlaneEnabled,
- required String fastlaneSettingsFilePath,
- required String companyName,
- required String defaultColor,
- required bool needsLauncherIcon,
- required bool needsSplashScreen,
- required bool needsLogo,
- 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 [],
});