copyWith method
Implementation
PageBeanBoardFilterBeanValuesItem copyWith(
{int? id, String? self, String? name}) {
return PageBeanBoardFilterBeanValuesItem(
id: id ?? this.id,
self: self ?? this.self,
name: name ?? this.name,
);
}