copyWith method

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

Implementation

IssueFilterForBulkPropertySet copyWith(
    {dynamic currentValue, List<int>? entityIds, bool? hasProperty}) {
  return IssueFilterForBulkPropertySet(
    currentValue: currentValue ?? this.currentValue,
    entityIds: entityIds ?? this.entityIds,
    hasProperty: hasProperty ?? this.hasProperty,
  );
}