VulnerabilityVendor constructor

VulnerabilityVendor({
  1. required String name,
  2. String? url,
  3. String? vendorCreatedAt,
  4. String? vendorSeverity,
  5. String? vendorUpdatedAt,
})

Implementation

VulnerabilityVendor({
  required this.name,
  this.url,
  this.vendorCreatedAt,
  this.vendorSeverity,
  this.vendorUpdatedAt,
});