CheckoutSessionAsyncPaymentSucceededEvent.fromJson constructor
CheckoutSessionAsyncPaymentSucceededEvent.fromJson(
- Object? json
Implementation
factory CheckoutSessionAsyncPaymentSucceededEvent.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return CheckoutSessionAsyncPaymentSucceededEvent(
object: CheckoutSession.fromJson(map['object']));
}