SDK constructor

SDK({
  1. int? sdkId,
  2. String? namespaceId,
  3. Map<String, String>? sdkName,
  4. Map<String, String>? sdkDescription,
  5. String? vendor,
  6. String? logoBase64,
  7. String? website,
  8. List<String>? matchedBy,
  9. bool? collectingData,
})

Implementation

SDK({
  this.sdkId,
  this.namespaceId,
  this.sdkName,
  this.sdkDescription,
  this.vendor,
  this.logoBase64,
  this.website,
  this.matchedBy,
  this.collectingData,
});