copyWithWrapped method

ConvertChapterResponseModel copyWithWrapped({
  1. Wrapped<String>? status,
})

Implementation

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