PushRule constructor

PushRule({
  1. required List<Object?> actions,
  2. List<PushCondition>? conditions,
  3. required bool default$,
  4. required bool enabled,
  5. String? pattern,
  6. required String ruleId,
})

Implementation

PushRule({
  required this.actions,
  this.conditions,
  required this.default$,
  required this.enabled,
  this.pattern,
  required this.ruleId,
});