ClientUser constructor

ClientUser({
  1. String? clientAccountId,
  2. String? email,
  3. String? status,
  4. String? userId,
})

Implementation

ClientUser({
  this.clientAccountId,
  this.email,
  this.status,
  this.userId,
});