Rule constructor

Rule({
  1. String? accountId,
  2. List<Condition>? condition,
  3. String? containerId,
  4. String? fingerprint,
  5. String? name,
  6. String? notes,
  7. String? ruleId,
})

Implementation

Rule({
  this.accountId,
  this.condition,
  this.containerId,
  this.fingerprint,
  this.name,
  this.notes,
  this.ruleId,
});