SprintBean constructor

SprintBean({
  1. int? id,
  2. String? self,
  3. String? state,
  4. String? name,
  5. String? startDate,
  6. String? endDate,
  7. String? completeDate,
  8. String? createdDate,
  9. int? originBoardId,
  10. String? goal,
})

Implementation

SprintBean(
    {this.id,
    this.self,
    this.state,
    this.name,
    this.startDate,
    this.endDate,
    this.completeDate,
    this.createdDate,
    this.originBoardId,
    this.goal});