copyWith method
Implementation
ProjectRoleGroup copyWith(
    {String? displayName, String? groupId, String? name}) {
  return ProjectRoleGroup(
    displayName: displayName ?? this.displayName,
    groupId: groupId ?? this.groupId,
    name: name ?? this.name,
  );
}