ReferralSystemClass constructor

ReferralSystemClass({
  1. String? id,
  2. String? name,
  3. String? clientId,
  4. String? status,
  5. String? desc,
  6. String? entryPointId,
  7. dynamic audience,
  8. int? limit,
  9. bool? targetAllUsers,
  10. List<Task>? tasks,
  11. List<CodeGenerationRule>? codeGenerationRules,
  12. DateTime? createdAt,
  13. DateTime? updatedAt,
  14. int? v,
})

Implementation

ReferralSystemClass({
  this.id,
  this.name,
  this.clientId,
  this.status,
  this.desc,
  this.entryPointId,
  this.audience,
  this.limit,
  this.targetAllUsers,
  this.tasks,
  this.codeGenerationRules,
  this.createdAt,
  this.updatedAt,
  this.v,
});