### Configure build.yaml for json_serializable_fic Source: https://github.com/jperezr21/json_serializable_immutable_collections/blob/master/builders/json_serializable_fic/README.md This configuration for build.yaml is necessary to prevent conflicts between json_serializable and json_serializable_fic, ensuring that json_serializable_fic's custom builder is prioritized. ```yaml targets: $default: builders: json_serializable_fic: # configure your options here, same as json_serializable options: explicit_to_json: true json_serializable:json_serializable: generate_for: # exclude everything to avoid conflicts, this library uses a custom builder include: exclude: - test/** - lib/** ``` -------------------------------- ### Add json_serializable_fic to dev_dependencies Source: https://github.com/jperezr21/json_serializable_immutable_collections/blob/master/builders/json_serializable_fic/README.md This code snippet shows how to add the json_serializable_fic package as a development dependency in your Dart project's pubspec.yaml file. ```yaml json_serializable_fic: ``` -------------------------------- ### Add json_serializable_mobx to dev_dependencies Source: https://github.com/jperezr21/json_serializable_immutable_collections/blob/master/builders/json_serializable_mobx/README.md This code snippet shows how to add the json_serializable_mobx package as a development dependency in your Dart project's pubspec.yaml file. ```yaml dev_dependencies: json_serializable_mobx: ``` -------------------------------- ### Configure json_serializable_mobx build.yaml Source: https://github.com/jperezr21/json_serializable_immutable_collections/blob/master/builders/json_serializable_mobx/README.md This YAML configuration is necessary for the build process to correctly integrate json_serializable_mobx with json_serializable, preventing conflicts and enabling custom options like 'explicit_to_json'. ```yaml targets: $default: builders: json_serializable_mobx: # configure your options here, same as json_serializable options: explicit_to_json: true json_serializable:json_serializable: generate_for: # exclude everything to avoid conflicts, this library uses a custom builder include: exclude: - test/** - lib/** ``` -------------------------------- ### Configure build.yaml for json_serializable Source: https://github.com/jperezr21/json_serializable_immutable_collections/blob/master/builders/json_serializable_immutable_collections/README.md Configures the build.yaml file to manage builder options for both json_serializable_immutable_collections and json_serializable to prevent conflicts. It includes options for explicit JSON conversion and exclusion rules. ```yaml targets: $default: builders: json_serializable_immutable_collections: # configure your options here, same as json_serializable options: explicit_to_json: true json_serializable:json_serializable: generate_for: # exclude everything to avoid conflicts, this library uses a custom builder include: exclude: - test/** - lib/** ``` -------------------------------- ### Add Dependency to pubspec.yaml Source: https://github.com/jperezr21/json_serializable_immutable_collections/blob/master/builders/json_serializable_immutable_collections/README.md Specifies how to add the json_serializable_immutable_collections package as a dev dependency in your Dart project's pubspec.yaml file. ```yaml json_serializable_immutable_collections: ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.