User constructor

User({
  1. int? id,
  2. String? externalId,
  3. Client? client,
  4. String? token,
  5. List<Credential>? credentials,
})

Implementation

User({
  this.id,
  this.externalId,
  this.client,
  this.token,
  this.credentials,
});