copyWith method
Implementation
InstitutionsSearchResponse copyWith(
{List<Institution>? institutions, String? requestId}) {
return InstitutionsSearchResponse(
institutions: institutions ?? this.institutions,
requestId: requestId ?? this.requestId);
}