Field constructor
Field({})
Implementation
Field({
required String name,
required this.type,
required this.isRequired,
required this.ignore,
required this.includeIfNull,
required this.nonFinal,
this.unknownEnumValue,
String? jsonKey,
}) : serializedName = jsonKey ?? name,
name =
CaseUtil(KeywordHelper.instance.getCorrectKeyword(name)).camelCase;