copyWith method

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

Implementation

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