KeyConfig constructor

KeyConfig({
  1. required Object? defaultValue,
  2. required bool disallowNullValue,
  3. required bool ignore,
  4. required bool includeIfNull,
  5. required String name,
  6. required bool required,
  7. required Object? unknownEnumValue,
})

Implementation

KeyConfig({
  required this.defaultValue,
  required this.disallowNullValue,
  required this.ignore,
  required this.includeIfNull,
  required this.name,
  required this.required,
  required this.unknownEnumValue,
});