NewFileDto constructor

NewFileDto({
  1. String pathFile = '',
  2. String pathTemplete = '',
  3. String extension = 'dart',
  4. bool replaceOldFileWithNew = false,
  5. bool generate = false,
})

Implementation

NewFileDto({
  this.pathFile = '',
  this.pathTemplete = '',
  this.extension = 'dart',
  this.replaceOldFileWithNew = false,
  this.generate = false,
});