copyWith method

Implementation

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