copyWith method
ProjectLandingPageInfo
copyWith(
{ - Map<String, dynamic>? attributes,
- int? boardId,
- String? boardName,
- String? projectKey,
- String? projectType,
- String? queueCategory,
- int? queueId,
- String? queueName,
- bool? simpleBoard,
- bool? simplified,
- String? url,
})
Implementation
ProjectLandingPageInfo copyWith(
{Map<String, dynamic>? attributes,
int? boardId,
String? boardName,
String? projectKey,
String? projectType,
String? queueCategory,
int? queueId,
String? queueName,
bool? simpleBoard,
bool? simplified,
String? url}) {
return ProjectLandingPageInfo(
attributes: attributes ?? this.attributes,
boardId: boardId ?? this.boardId,
boardName: boardName ?? this.boardName,
projectKey: projectKey ?? this.projectKey,
projectType: projectType ?? this.projectType,
queueCategory: queueCategory ?? this.queueCategory,
queueId: queueId ?? this.queueId,
queueName: queueName ?? this.queueName,
simpleBoard: simpleBoard ?? this.simpleBoard,
simplified: simplified ?? this.simplified,
url: url ?? this.url,
);
}