PaymentIntentProcessing.fromJson constructor

PaymentIntentProcessing.fromJson(
  1. Object? json
)

Implementation

factory PaymentIntentProcessing.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return PaymentIntentProcessing(
      card: map['card'] == null
          ? null
          : PaymentIntentCardProcessing.fromJson(map['card']));
}