copyWithWrapped method
Implementation
InstitutionsGetRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<int>? count,
Wrapped<int>? offset,
Wrapped<List<enums.CountryCode>>? countryCodes,
Wrapped<InstitutionsGetRequestOptions?>? options}) {
return InstitutionsGetRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
count: (count != null ? count.value : this.count),
offset: (offset != null ? offset.value : this.offset),
countryCodes:
(countryCodes != null ? countryCodes.value : this.countryCodes),
options: (options != null ? options.value : this.options));
}