Client constructor

Client({
  1. String? displayName,
  2. String? name,
  3. String? partnerClientId,
  4. String? role,
  5. bool? sellerVisible,
  6. String? state,
})

Implementation

Client({
  this.displayName,
  this.name,
  this.partnerClientId,
  this.role,
  this.sellerVisible,
  this.state,
});