copyWith method

CreditRelayRefreshRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? relayToken,
  4. ReportType? reportType,
  5. 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);
}