copyWith method

InstitutionsGetByIdRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? institutionId,
  4. List<CountryCode>? countryCodes,
  5. InstitutionsGetByIdRequestOptions? options,
})

Implementation

InstitutionsGetByIdRequest copyWith(
    {String? clientId,
    String? secret,
    String? institutionId,
    List<enums.CountryCode>? countryCodes,
    InstitutionsGetByIdRequestOptions? options}) {
  return InstitutionsGetByIdRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      institutionId: institutionId ?? this.institutionId,
      countryCodes: countryCodes ?? this.countryCodes,
      options: options ?? this.options);
}