EnumDj constructor

EnumDj({
  1. dynamic descriptionDj,
  2. String? name,
  3. List<String>? values,
  4. CodePartDjType codePartDjType = CodePartDjType.Enum,
})

Implementation

EnumDj({
  descriptionDj,
  this.name,
  this.values,
  CodePartDjType codePartDjType = CodePartDjType.Enum,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );