copyWith method

PageBeanBoardFilterBeanValuesItem copyWith({
  1. int? id,
  2. String? self,
  3. String? name,
})

Implementation

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