FunctionCallDj constructor

FunctionCallDj({
  1. dynamic descriptionDj,
  2. String? outputStr,
  3. required String name,
  4. String? arg,
  5. List<String>? 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,
      );