Achievement constructor

Achievement({
  1. String? id,
  2. String? identifier,
  3. String? title,
  4. String? subTitle,
  5. String? description,
  6. String? targetType,
  7. num? target,
  8. String? expiry,
  9. num? expiryDays,
  10. DateTime? expiryDate,
  11. bool? accumulate,
  12. bool? isActive,
  13. String? updatedAt,
  14. String? iconLink,
  15. num? levelOrderNumber,
})

Implementation

Achievement(
    {this.id,
    this.identifier,
    this.title,
    this.subTitle,
    this.description,
    this.targetType,
    this.target,
    this.expiry,
    this.expiryDays,
    this.expiryDate,
    this.accumulate,
    this.isActive,
    this.updatedAt,
    this.iconLink,
    this.levelOrderNumber});