copyWith method

DeleteChapterResponseModel copyWith({
  1. String? status,
})

Implementation

DeleteChapterResponseModel copyWith({String? status}) {
  return DeleteChapterResponseModel(status: status ?? this.status);
}