merge method
Merges the current FastResponseAdRanking instance with another
FastResponseAdRanking instance. It updates the value and factor of
the current instance with the values from the model instance.
Implementation
@override
FastResponseAdRanking merge(covariant FastResponseAdRanking model) {
return copyWith(
value: model.value,
factor: model.factor,
);
}