merge method

  1. @override
FastResponseAdRanking merge(
  1. covariant FastResponseAdRanking model
)
override

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,
  );
}