copyWith method

SandboxIncomeFireWebhookRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? incomeVerificationId,
  4. String? webhook,
  5. SandboxIncomeFireWebhookRequestVerificationStatus? verificationStatus,
})

Implementation

SandboxIncomeFireWebhookRequest copyWith(
    {String? clientId,
    String? secret,
    String? incomeVerificationId,
    String? webhook,
    enums.SandboxIncomeFireWebhookRequestVerificationStatus?
        verificationStatus}) {
  return SandboxIncomeFireWebhookRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      incomeVerificationId: incomeVerificationId ?? this.incomeVerificationId,
      webhook: webhook ?? this.webhook,
      verificationStatus: verificationStatus ?? this.verificationStatus);
}