copyWith method
Implementation
PageBeanBoardValuesItemLocation copyWith(
{int? projectId,
int? userId,
String? userAccountId,
String? displayName,
String? projectName,
String? projectKey,
String? projectTypeKey,
String? avatarUri,
String? name}) {
return PageBeanBoardValuesItemLocation(
projectId: projectId ?? this.projectId,
userId: userId ?? this.userId,
userAccountId: userAccountId ?? this.userAccountId,
displayName: displayName ?? this.displayName,
projectName: projectName ?? this.projectName,
projectKey: projectKey ?? this.projectKey,
projectTypeKey: projectTypeKey ?? this.projectTypeKey,
avatarUri: avatarUri ?? this.avatarUri,
name: name ?? this.name,
);
}