copyWith method

IssueTypeScreenSchemeUpdateDetails copyWith({
  1. String? description,
  2. String? name,
})

Implementation

IssueTypeScreenSchemeUpdateDetails copyWith(
    {String? description, String? name}) {
  return IssueTypeScreenSchemeUpdateDetails(
    description: description ?? this.description,
    name: name ?? this.name,
  );
}