Rule constructor

Rule({
  1. String? action,
  2. List<Condition>? conditions,
  3. String? description,
  4. List<String>? ins,
  5. List<LogConfig>? logConfigs,
  6. List<String>? notIns,
  7. List<String>? permissions,
})

Implementation

Rule({
  this.action,
  this.conditions,
  this.description,
  this.ins,
  this.logConfigs,
  this.notIns,
  this.permissions,
});