copyWith method
Implementation
CreditRelayCreateRequest copyWith(
{String? clientId,
String? secret,
List<String>? reportTokens,
String? secondaryClientId,
String? webhook}) {
return CreditRelayCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
reportTokens: reportTokens ?? this.reportTokens,
secondaryClientId: secondaryClientId ?? this.secondaryClientId,
webhook: webhook ?? this.webhook);
}