copyWith method
IssueFieldOptionConfiguration
copyWith({
- List<
IssueFieldOptionConfigurationAttributes> ? attributes, - IssueFieldOptionScopeBean? scope,
Implementation
IssueFieldOptionConfiguration copyWith(
{List<IssueFieldOptionConfigurationAttributes>? attributes,
IssueFieldOptionScopeBean? scope}) {
return IssueFieldOptionConfiguration(
attributes: attributes ?? this.attributes,
scope: scope ?? this.scope,
);
}