IssueFilterForBulkPropertySet constructor

IssueFilterForBulkPropertySet({
  1. dynamic currentValue,
  2. List<int>? entityIds,
  3. bool? hasProperty,
})

Implementation

IssueFilterForBulkPropertySet(
    {this.currentValue, List<int>? entityIds, bool? hasProperty})
    : entityIds = entityIds ?? [],
      hasProperty = hasProperty ?? false;