Condition constructor

Condition({
  1. required String key,
  2. required String type,
  3. required String value,
})

Implementation

Condition({
  required this.key,
  required this.type,
  required this.value,
});