Deal constructor

Deal({
  1. String? id,
  2. String? creatorId,
  3. String? funnelId,
  4. String? statusId,
  5. String? executorId,
  6. String? organizationId,
  7. String? contactId,
  8. String? title,
  9. String? description,
  10. int? amount,
  11. String? winStatus,
})

Implementation

Deal({
  this.id,
  this.creatorId,
  this.funnelId,
  this.statusId,
  this.executorId,
  this.organizationId,
  this.contactId,
  this.title,
  this.description,
  this.amount,
  this.winStatus,
});