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