copyWithWrapped method
InstitutionsSearchResponse
copyWithWrapped({
- Wrapped<
List< ? institutions,Institution> > - Wrapped<
String> ? requestId,
Implementation
InstitutionsSearchResponse copyWithWrapped(
{Wrapped<List<Institution>>? institutions, Wrapped<String>? requestId}) {
return InstitutionsSearchResponse(
institutions:
(institutions != null ? institutions.value : this.institutions),
requestId: (requestId != null ? requestId.value : this.requestId));
}