Hunter constructor

Hunter({
  1. int? id,
  2. String? hunterStatus,
  3. String? claimMessage,
  4. int? answeredAt,
  5. List<String>? reason,
  6. List<Community>? community,
})

Implementation

Hunter({
  this.id,
  this.hunterStatus,
  this.claimMessage,
  this.answeredAt,
  this.reason,
  this.community,
});