NpmPackage constructor

NpmPackage({
  1. String? createTime,
  2. String? name,
  3. String? packageName,
  4. List<String>? tags,
  5. String? updateTime,
  6. String? version,
})

Implementation

NpmPackage({
  this.createTime,
  this.name,
  this.packageName,
  this.tags,
  this.updateTime,
  this.version,
});