FieldDj constructor

FieldDj({
  1. dynamic descriptionDj,
  2. String? name,
  3. String? dataType,
  4. String? safeDataType,
  5. List<String>? safetyDescription,
  6. bool? isFinal = true,
  7. bool? isRequired = true,
  8. bool? isOptional = false,
  9. bool? superOnly = false,
  10. bool? isStatic = false,
  11. dynamic defaultValue,
  12. CodePartDjType codePartDjType = CodePartDjType.Field,
})

Implementation

FieldDj({
  descriptionDj,
  this.name,
  this.dataType,
  this.safeDataType,
  this.safetyDescription,
  this.isFinal = true,
  this.isRequired = true,
  this.isOptional = false,
  this.superOnly = false,
  this.isStatic = false,
  this.defaultValue,
  CodePartDjType codePartDjType = CodePartDjType.Field,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );