json_field.dart 609 B

12345678910111213141516171819202122232425
  1. // ignore_for_file: non_constant_identifier_names
  2. // ignore_for_file: camel_case_types
  3. // ignore_for_file: prefer_single_quotes
  4. // This file is automatically generated. DO NOT EDIT, all your changes would be lost.
  5. class JsonSerializable{
  6. const JsonSerializable();
  7. }
  8. class JSONField {
  9. //Specify the parse field name
  10. final String? name;
  11. //Whether to participate in toJson
  12. final bool? serialize;
  13. //Whether to participate in fromMap
  14. final bool? deserialize;
  15. //Enumeration or not
  16. final bool? isEnum;
  17. const JSONField({this.name, this.serialize, this.deserialize, this.isEnum});
  18. }