FlutterProjectConfig constructor

const FlutterProjectConfig({
  1. required String projectName,
  2. required String projectParentDir,
  3. required String description,
  4. required String organization,
  5. required String template,
  6. required bool isEmptyApp,
  7. required String? androidLanguage,
  8. required List<String> platforms,
  9. required bool shouldRunPubGet,
  10. required bool isOfflineMode,
  11. required bool shouldOverwrite,
})

Implementation

const FlutterProjectConfig({
  required this.projectName,
  required this.projectParentDir,
  required this.description,
  required this.organization,
  required this.template,
  required this.isEmptyApp,
  required this.androidLanguage,
  required this.platforms,
  required this.shouldRunPubGet,
  required this.isOfflineMode,
  required this.shouldOverwrite,
});