copyWith method
Implementation
BoardConfigBeanEstimation copyWith(
{String? type, BoardConfigBeanEstimationField? field}) {
return BoardConfigBeanEstimation(
type: type ?? this.type,
field: field ?? this.field,
);
}
BoardConfigBeanEstimation copyWith(
{String? type, BoardConfigBeanEstimationField? field}) {
return BoardConfigBeanEstimation(
type: type ?? this.type,
field: field ?? this.field,
);
}