copyWith method Null safety
inherited
Implementation
SpeechPackageStatus copyWith(
{String? id, bool? isDownloaded, bool? isActivated, bool? isUpdated}) {
return SpeechPackageStatus(
id: id ?? this.id,
isDownloaded: isDownloaded ?? this.isDownloaded,
isActivated: isActivated ?? this.isActivated,
isUpdated: isUpdated ?? this.isUpdated,
);
}