PaymentIntentAmountCapturableUpdatedEvent constructor

const PaymentIntentAmountCapturableUpdatedEvent({
  1. required PaymentIntent object,
})

Occurs when a PaymentIntent has funds to be captured. Check the `amount_capturable` property on the PaymentIntent to determine the amount that can be captured. You may capture the PaymentIntent with an `amount_to_capture` value up to the specified amount. [Learn more about capturing PaymentIntents.](https://stripe.com/docs/api/payment\_intents/capture)

Implementation

const PaymentIntentAmountCapturableUpdatedEvent({required this.object});