SidekickTemplateProperties constructor

const SidekickTemplateProperties({
  1. required String name,
  2. required File entrypointLocation,
  3. required Directory packageLocation,
  4. @Deprecated('Not used anymore') Version? sidekickCliVersion,
  5. String? mainProjectPath,
  6. bool? shouldSetFlutterSdkPath,
  7. @Deprecated('Not used anymore') bool? isMainProjectRoot,
  8. @Deprecated('Not used anymore') bool? hasNestedPackagesPath,
})

Implementation

const SidekickTemplateProperties({
  required this.name,
  required this.entrypointLocation,
  required this.packageLocation,
  @Deprecated('Not used anymore') this.sidekickCliVersion,
  this.mainProjectPath,
  this.shouldSetFlutterSdkPath,
  @Deprecated('Not used anymore') this.isMainProjectRoot,
  @Deprecated('Not used anymore') this.hasNestedPackagesPath,
});