copyWith method
Implementation
IssueCreateMetadata copyWith(
{String? expand, List<ProjectIssueCreateMetadata>? projects}) {
return IssueCreateMetadata(
expand: expand ?? this.expand,
projects: projects ?? this.projects,
);
}
IssueCreateMetadata copyWith(
{String? expand, List<ProjectIssueCreateMetadata>? projects}) {
return IssueCreateMetadata(
expand: expand ?? this.expand,
projects: projects ?? this.projects,
);
}