copyWith method
CreditRelayRefreshRequest
copyWith({
- String? clientId,
- String? secret,
- String? relayToken,
- ReportType? reportType,
- String? webhook,
Implementation
CreditRelayRefreshRequest copyWith(
{String? clientId,
String? secret,
String? relayToken,
enums.ReportType? reportType,
String? webhook}) {
return CreditRelayRefreshRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
relayToken: relayToken ?? this.relayToken,
reportType: reportType ?? this.reportType,
webhook: webhook ?? this.webhook);
}