Malware constructor

Malware({
  1. required String name,
  2. String? path,
  3. MalwareState? state,
  4. MalwareType? type,
})

Implementation

Malware({
  required this.name,
  this.path,
  this.state,
  this.type,
});