copyWith method

RefreshRate copyWith({
  1. double? refreshRate,
})

Implementation

RefreshRate copyWith({double? refreshRate}) {
  return RefreshRate(refreshRate: refreshRate ?? this.refreshRate);
}