copyWith method
InstitutionsGetRequest
copyWith({
- String? clientId,
- String? secret,
- int? count,
- int? offset,
- List<
CountryCode> ? countryCodes, - InstitutionsGetRequestOptions? options,
Implementation
InstitutionsGetRequest copyWith(
{String? clientId,
String? secret,
int? count,
int? offset,
List<enums.CountryCode>? countryCodes,
InstitutionsGetRequestOptions? options}) {
return InstitutionsGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
count: count ?? this.count,
offset: offset ?? this.offset,
countryCodes: countryCodes ?? this.countryCodes,
options: options ?? this.options);
}