BanFileShaRequest constructor

const BanFileShaRequest({
  1. required String sha256Hex,
  2. String? category,
  3. int? severity,
  4. String? contentType,
  5. String? sourceUrl,
  6. String? notes,
})

Implementation

const BanFileShaRequest({
  required this.sha256Hex,
  this.category,
  this.severity,
  this.contentType,
  this.sourceUrl,
  this.notes,
});