copyWith method

SoftwareNavigationInfo copyWith({
  1. int? boardId,
  2. String? boardName,
  3. bool? simpleBoard,
  4. int? totalBoardsInProject,
})

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,
  );
}