Client constructor

Client({
  1. String? clientId,
  2. String? name,
  3. List<ClientAttribute>? attribute,
  4. String? createdDateTime,
  5. String? createdById,
})

Implementation

Client({
  this.clientId,
  this.name,
  this.attribute,
  this.createdDateTime,
  this.createdById,
  // this.roles,
});