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