copyWith method
Implementation
SoftwareNavigationInfo copyWith(
{int? boardId,
String? boardName,
bool? simpleBoard,
int? totalBoardsInProject}) {
return SoftwareNavigationInfo(
boardId: boardId ?? this.boardId,
boardName: boardName ?? this.boardName,
simpleBoard: simpleBoard ?? this.simpleBoard,
totalBoardsInProject: totalBoardsInProject ?? this.totalBoardsInProject,
);
}