copyWithWrapped method

RefreshRate$Response copyWithWrapped({
  1. Wrapped<double?>? refreshRate,
})

Implementation

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