PaymentIntentAmountCapturableUpdatedEvent.fromJson constructor

PaymentIntentAmountCapturableUpdatedEvent.fromJson(
  1. Object? json
)

Implementation

factory PaymentIntentAmountCapturableUpdatedEvent.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return PaymentIntentAmountCapturableUpdatedEvent(
      object: PaymentIntent.fromJson(map['object']));
}