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