copyWith method

InstitutionsGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. int? count,
  4. int? offset,
  5. List<CountryCode>? countryCodes,
  6. 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);
}