ImportDj constructor

ImportDj({
  1. dynamic descriptionDj,
  2. String importStr = '',
  3. bool isPackage = false,
  4. bool isFlutter = false,
  5. bool isFile = false,
  6. bool isPart = false,
  7. CodePartDjType codePartDjType = CodePartDjType.Import,
})

Implementation

ImportDj({
  descriptionDj,
  this.importStr = '',
  this.isPackage = false,
  this.isFlutter = false,
  this.isFile = false,
  this.isPart = false,
  CodePartDjType codePartDjType = CodePartDjType.Import,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );