copyWith method

IssueCreateMetadata copyWith({
  1. String? expand,
  2. List<ProjectIssueCreateMetadata>? projects,
})

Implementation

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