VulnerableApp constructor

VulnerableApp({
  1. required String packageName,
  2. required String appName,
  3. String? iconUrl,
})

Implementation

VulnerableApp({
  required this.packageName,
  required this.appName,
  this.iconUrl,
});