Trigger constructor

Trigger({
  1. int? count,
  2. double? percent,
})

Implementation

Trigger({
  this.count,
  this.percent,
});