UserID constructor

const UserID(
  1. String domain,
  2. String username,
  3. bool active, {
  4. bool registered = true,
})

Implementation

const UserID(
  this.domain,
  this.username,
  this.active, {
  this.registered = true,
});