copyWith method
InstitutionsGetByIdRequest
copyWith({
- String? clientId,
- String? secret,
- String? institutionId,
- List<
CountryCode> ? countryCodes, - 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);
}