FileConfig constructor

const FileConfig({
  1. required String? cachePath,
  2. required bool? useGitCache,
  3. required String? gitCachePath,
  4. required String? flutterUrl,
  5. required bool? priviledgedAccess,
  6. required bool? runPubGetOnSdkChanges,
  7. required bool? updateVscodeSettings,
  8. required bool? updateGitIgnore,
})

Constructor

Implementation

const FileConfig({
  required super.cachePath,
  required super.useGitCache,
  required super.gitCachePath,
  required super.flutterUrl,
  required this.priviledgedAccess,
  required this.runPubGetOnSdkChanges,
  required this.updateVscodeSettings,
  required this.updateGitIgnore,
});