Permissions constructor

Permissions({
  1. bool? admin,
  2. bool? maintain,
  3. bool? pull,
  4. bool? push,
  5. bool? triage,
})

Implementation

Permissions({
  this.admin,
  this.maintain,
  this.pull,
  this.push,
  this.triage,
});