Client constructor

Client({
  1. String? clientAccountId,
  2. String? clientName,
  3. String? entityId,
  4. String? entityName,
  5. String? entityType,
  6. String? partnerClientId,
  7. String? role,
  8. String? status,
  9. bool? visibleToSeller,
})

Implementation

Client({
  this.clientAccountId,
  this.clientName,
  this.entityId,
  this.entityName,
  this.entityType,
  this.partnerClientId,
  this.role,
  this.status,
  this.visibleToSeller,
});