OrgQueryPropertyMatcher constructor

const OrgQueryPropertyMatcher({
  1. required String property,
  2. required String operator,
  3. required dynamic value,
})

Implementation

const OrgQueryPropertyMatcher({
  required this.property,
  required this.operator,
  required this.value,
});