copyWithWrapped method
Implementation
ConvertChapterResponseModel copyWithWrapped({Wrapped<String>? status}) {
return ConvertChapterResponseModel(
status: (status != null ? status.value : this.status));
}
ConvertChapterResponseModel copyWithWrapped({Wrapped<String>? status}) {
return ConvertChapterResponseModel(
status: (status != null ? status.value : this.status));
}