SuppressionEntry constructor

SuppressionEntry({
  1. int? id,
  2. SuppressionEntryTypeEnum? type,
  3. String? value,
  4. String? reason,
  5. DateTime? createdAt,
})

Returns a new SuppressionEntry instance.

Implementation

SuppressionEntry({
  this.id,
  this.type,
  this.value,
  this.reason,
  this.createdAt,
});