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