ProjectRoleDetails constructor

ProjectRoleDetails({
  1. bool? admin,
  2. bool? default$,
  3. String? description,
  4. int? id,
  5. String? name,
  6. bool? roleConfigurable,
  7. Scope? scope,
  8. String? self,
  9. String? translatedName,
})

Implementation

ProjectRoleDetails(
    {bool? admin,
    bool? default$,
    this.description,
    this.id,
    this.name,
    bool? roleConfigurable,
    this.scope,
    this.self,
    this.translatedName})
    : admin = admin ?? false,
      default$ = default$ ?? false,
      roleConfigurable = roleConfigurable ?? false;