ProjectRole constructor
ProjectRole({})
Implementation
ProjectRole(
{List<RoleActor>? actors,
bool? admin,
bool? currentUserRole,
bool? default$,
this.description,
this.id,
this.name,
bool? roleConfigurable,
this.scope,
this.self,
this.translatedName})
: actors = actors ?? [],
admin = admin ?? false,
currentUserRole = currentUserRole ?? false,
default$ = default$ ?? false,
roleConfigurable = roleConfigurable ?? false;