FunctionCallDj constructor

FunctionCallDj({
  1. dynamic descriptionDj,
  2. String? outputStr,
  3. required String name,
  4. DataTypeDj? arg,
  5. List<DataTypeDj>? args,
  6. CodePartDjType codePartDjType = CodePartDjType.FunctionCall,
})

Implementation

FunctionCallDj({
  descriptionDj,
  this.outputStr,
  required this.name,
  this.arg,
  this.args,
  CodePartDjType codePartDjType = CodePartDjType.FunctionCall,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );