VariableDeclarationDj constructor

VariableDeclarationDj({
  1. dynamic descriptionDj,
  2. VariableType? dataType,
  3. String? name,
  4. String? initialValue,
  5. CodePartDjType codePartDjType = CodePartDjType.VariableDeclaration,
})

Implementation

VariableDeclarationDj({
  descriptionDj,
  this.dataType,
  this.name,
  this.initialValue,
  CodePartDjType codePartDjType = CodePartDjType.VariableDeclaration,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );