QueryValue constructor

QueryValue({
  1. required dynamic value,
  2. OperType operType = OperType.isEqualTo,
})

Implementation

QueryValue({
  required this.value,
  this.operType = OperType.isEqualTo,
});