Dependency constructor

Dependency({
  1. String id = '',
  2. String repository = '',
  3. String licenseType = '',
  4. String licenseContent = '',
  5. String publisher = '',
  6. String currentVersion = '',
  7. String version = '',
  8. bool supportsAndroid = false,
  9. bool supportsIOS = false,
  10. bool supportsMacOS = false,
  11. bool supportsWindows = false,
  12. bool supportsLinux = false,
  13. bool supportsWeb = false,
})

Implementation

Dependency({
  this.id = '',
  this.repository = '',
  this.licenseType = '',
  this.licenseContent = '',
  this.publisher = '',
  this.currentVersion = '',
  this.version = '',
  this.supportsAndroid = false,
  this.supportsIOS = false,
  this.supportsMacOS = false,
  this.supportsWindows = false,
  this.supportsLinux = false,
  this.supportsWeb = false,
});