copyWith method

Implementation

ProjectIssueTypeMappings copyWith({List<ProjectIssueTypeMapping>? mappings}) {
  return ProjectIssueTypeMappings(
    mappings: mappings ?? this.mappings,
  );
}