copyWithWrapped method
Implementation
RefreshRate copyWithWrapped({Wrapped<double?>? refreshRate}) {
return RefreshRate(
refreshRate:
(refreshRate != null ? refreshRate.value : this.refreshRate));
}
RefreshRate copyWithWrapped({Wrapped<double?>? refreshRate}) {
return RefreshRate(
refreshRate:
(refreshRate != null ? refreshRate.value : this.refreshRate));
}