Condition constructor

Condition({
  1. String? text,
  2. String? icon,
  3. int? code,
})

Implementation

Condition({
  this.text,
  this.icon,
  this.code,
});