copyWith method

IssueBeanFieldsToInclude copyWith({
  1. List<String>? included,
  2. List<String>? actuallyIncluded,
  3. List<String>? excluded,
})

Implementation

IssueBeanFieldsToInclude copyWith(
    {List<String>? included,
    List<String>? actuallyIncluded,
    List<String>? excluded}) {
  return IssueBeanFieldsToInclude(
    included: included ?? this.included,
    actuallyIncluded: actuallyIncluded ?? this.actuallyIncluded,
    excluded: excluded ?? this.excluded,
  );
}