copyWith method
Implementation
ToggleDownloadIsPaused copyWith({
int? fileId,
bool? isPaused,
}) =>
ToggleDownloadIsPaused(
fileId: fileId ?? this.fileId,
isPaused: isPaused ?? this.isPaused,
);
ToggleDownloadIsPaused copyWith({
int? fileId,
bool? isPaused,
}) =>
ToggleDownloadIsPaused(
fileId: fileId ?? this.fileId,
isPaused: isPaused ?? this.isPaused,
);