TaskIncludes constructor

const TaskIncludes({
  1. Input<String?>? filterType,
  2. Input<String?>? value,
})

Creates a new TaskIncludes. filterType The type of filter rule to apply. Valid values: SIMPLE_PATTERN. value A single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example: /folder1|/folder2

Implementation

const TaskIncludes({
  this.filterType,
  this.value,
});