SingleLineDj constructor

SingleLineDj({
  1. dynamic descriptionDj,
  2. String? line,
  3. CodePartDjType codePartDjType = CodePartDjType.SingleLine,
})

Implementation

SingleLineDj({
  descriptionDj,
  this.line,
  CodePartDjType codePartDjType = CodePartDjType.SingleLine,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );