LogExclusion constructor

LogExclusion({
  1. required String name,
  2. String description = '',
  3. required String filter,
  4. bool disabled = false,
  5. Timestamp? createTime,
  6. Timestamp? updateTime,
})

Implementation

LogExclusion({
  required this.name,
  this.description = '',
  required this.filter,
  this.disabled = false,
  this.createTime,
  this.updateTime,
}) : super(fullyQualifiedName);