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