copyWith method

ToggleAllDownloadsArePaused copyWith({
  1. bool? arePaused,
})

Implementation

ToggleAllDownloadsArePaused copyWith({
  bool? arePaused,
}) =>
    ToggleAllDownloadsArePaused(
      arePaused: arePaused ?? this.arePaused,
    );