aqwert/riverpod_crud

Where are all the file.freezed.dart and file.g.dart files?

Closed this issue · 1 comments

I see part 'event_list_model.freezed.dart'; and the freezed annotation but none of those code gen files. Yet it still runs. I tried running flutter pub run build_runner build --delete-conflicting-outputs but it did not give me the freezed nor g files.

I am really confused now.

I had to set to false in .vscode/settings.json the following as shown here: https://stackoverflow.com/a/66196558/9481613

{
  "files.exclude": {
      "**/*.g.dart": false,
      "**/*.freezed.dart": false
  }
}