copyWith method
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,
);
}