DebianControl constructor

DebianControl({
  1. required String package,
  2. String version = '0.0.1',
  3. String debArch = 'amd64',
  4. String maintainer = 'unknown',
  5. String description = '',
  6. String priority = 'optional',
  7. String depends = '',
  8. String essential = 'no',
})

Implementation

DebianControl({
  required this.package,
  this.version = '0.0.1',
  this.debArch = 'amd64',
  this.maintainer = 'unknown',
  this.description = '',
  this.priority = 'optional',
  this.depends = '',
  this.essential = 'no',
});