copyWith method

IssueTypeScreenScheme copyWith({
  1. String? description,
  2. String? id,
  3. String? name,
})

Implementation

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