copyWith method

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

Implementation

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