copyWithWrapped method

InstitutionsGetRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<int>? count,
  4. Wrapped<int>? offset,
  5. Wrapped<List<CountryCode>>? countryCodes,
  6. Wrapped<InstitutionsGetRequestOptions?>? options,
})

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));
}