copyWith method

WebhookVerificationKeyGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? keyId,
})

Implementation

WebhookVerificationKeyGetRequest copyWith(
    {String? clientId, String? secret, String? keyId}) {
  return WebhookVerificationKeyGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      keyId: keyId ?? this.keyId);
}