SoftwareNavigationInfo constructor

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

Implementation

SoftwareNavigationInfo(
    {this.boardId,
    this.boardName,
    bool? simpleBoard,
    this.totalBoardsInProject})
    : simpleBoard = simpleBoard ?? false;