copyWith method
Implementation
ProjectRoleDetails copyWith(
{bool? admin,
bool? default$,
String? description,
int? id,
String? name,
bool? roleConfigurable,
Scope? scope,
String? self,
String? translatedName}) {
return ProjectRoleDetails(
admin: admin ?? this.admin,
default$: default$ ?? this.default$,
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
roleConfigurable: roleConfigurable ?? this.roleConfigurable,
scope: scope ?? this.scope,
self: self ?? this.self,
translatedName: translatedName ?? this.translatedName,
);
}