Funnels constructor

Funnels({
  1. String? id,
  2. String? creatorId,
  3. int? currencyId,
  4. String? name,
  5. int? dealsCount,
  6. int? dealsAmount,
  7. bool? isPrivate,
  8. bool? isBookmarked,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
  11. List<String>? team,
})

Implementation

Funnels({
  this.id,
  this.creatorId,
  this.currencyId,
  this.name,
  this.logo,
  this.dealsCount,
  this.dealsAmount,
  this.isPrivate,
  this.isBookmarked,
  this.createdAt,
  this.updatedAt,
  this.team,
});