SetupConfig constructor
SetupConfig({
- required String appName,
- required String orgDomain,
- required String baseClassName,
- required TemplateType template,
- required String outputDir,
- bool createModels = false,
- bool createServer = false,
- bool useFirebase = false,
- String? firebaseProjectId,
- bool setupCloudRun = false,
- String? serviceAccountKeyPath,
- List<
String> platforms = const ['android', 'ios', 'web', 'linux', 'macos', 'windows'],
Implementation
SetupConfig({
required this.appName,
required this.orgDomain,
required this.baseClassName,
required this.template,
required this.outputDir,
this.createModels = false,
this.createServer = false,
this.useFirebase = false,
this.firebaseProjectId,
this.setupCloudRun = false,
this.serviceAccountKeyPath,
this.platforms = const [
'android',
'ios',
'web',
'linux',
'macos',
'windows',
],
});