copyWith method

  1. @override
FastResponseAdRanking copyWith({
  1. double? value,
  2. int? factor,
})
override

Creates a new instance of FastResponseAdRanking with optional updates to value and/or factor.

Implementation

@override
FastResponseAdRanking copyWith({
  double? value,
  int? factor,
}) {
  return FastResponseAdRanking(
    value: value ?? this.value,
    factor: factor ?? this.factor,
  );
}