ClassDj constructor

ClassDj({
  1. dynamic descriptionDj,
  2. String? name,
  3. String? baseName,
  4. List<FieldDj>? fields,
  5. bool? isExtends,
  6. bool? isImplements,
  7. bool? jsonSerializable,
  8. List<CodePartDj>? functions,
  9. CodePartDjType codePartDjType = CodePartDjType.Class,
})

Implementation

ClassDj({
  descriptionDj,
  this.name,
  this.baseName,
  this.fields,
  this.isExtends,
  this.isImplements,
  this.jsonSerializable,
  this.functions,
  CodePartDjType codePartDjType = CodePartDjType.Class,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );