copyWithWrapped method

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

Implementation

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