CarpUser constructor

CarpUser({
  1. required String username,
  2. int? id,
  3. String? accountId,
  4. String? firstName,
  5. String? lastName,
  6. bool? isActivated = true,
  7. String? phone,
  8. String? email,
  9. String? department,
  10. String? organization,
})

Implementation

CarpUser({
  required this.username,
  this.id,
  this.accountId,
  this.firstName,
  this.lastName,
  this.isActivated = true,
  this.phone,
  this.email,
  this.department,
  this.organization,
});