Introduction to JSON annotations
Installing and Using json_serializable and json_annotation packages
Add this to your package's pubspec.yaml file:
You can then install packages from the command line:
Example
Now you can use it in your Dart code by importing it like this:
Write the following code
To generate the code type the following command
Ignore lint warnings on generated files
It is likely that the code generated by Json_Serializer will cause your linter to report warnings.
The solution to this problem is to tell the linter to ignore generated files, by modifying your analysis_options.yaml
:
Last updated
Was this helpful?