NudgeUser constructor

NudgeUser({
  1. int slno = 1,
  2. required String extId,
  3. required String uid,
  4. String? name,
  5. String? email,
  6. String? phone,
  7. required Map<String, dynamic> props,
  8. String? refBy,
  9. String? refNum,
  10. int? refLeadNum,
  11. String? refByName,
  12. String? clientRefCode,
})

Implementation

NudgeUser({
  this.slno = 1,
  required this.extId,
  required this.uid,
  this.name,
  this.email,
  this.phone,
  required this.props,
  this.refBy,
  this.refNum,
  this.refLeadNum,
  this.refByName,
  this.clientRefCode,
});