You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
diplomatic-quarter/lib/generated/json/base/json_field.dart

22 lines
560 B
Dart

// ignore_for_file: non_constant_identifier_names
// ignore_for_file: camel_case_types
// ignore_for_file: prefer_single_quotes
// This file is automatically generated. DO NOT EDIT, all your changes would be lost.
class JSONField {
//Specify the parse field name
final String name;
//Specify the time resolution format
final String format;
//Whether to participate in toJson
final bool serialize;
//Whether to participate in fromMap
final bool deserialize;
const JSONField({this.name, this.format, this.serialize, this.deserialize});
}