ProjectLandingPageInfo constructor

ProjectLandingPageInfo({
  1. Map<String, dynamic>? attributes,
  2. int? boardId,
  3. String? boardName,
  4. String? projectKey,
  5. String? projectType,
  6. String? queueCategory,
  7. int? queueId,
  8. String? queueName,
  9. bool? simpleBoard,
  10. bool? simplified,
  11. String? url,
})

Implementation

ProjectLandingPageInfo(
    {this.attributes,
    this.boardId,
    this.boardName,
    this.projectKey,
    this.projectType,
    this.queueCategory,
    this.queueId,
    this.queueName,
    bool? simpleBoard,
    bool? simplified,
    this.url})
    : simpleBoard = simpleBoard ?? false,
      simplified = simplified ?? false;