copyWith method
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);
}