PushCondition constructor

PushCondition({
  1. String? is$,
  2. String? key,
  3. required String kind,
  4. String? pattern,
})

Implementation

PushCondition({
  this.is$,
  this.key,
  required this.kind,
  this.pattern,
});