PaymentIntentResult.fromJson constructor

PaymentIntentResult.fromJson(
  1. Map json
)

Implementation

factory PaymentIntentResult.fromJson(Map<dynamic, dynamic> json) {
  return PaymentIntentResult(
    status: json['status'],
    paymentIntentId: json['paymentIntentId'],
    paymentMethodId: json['paymentMethodId'],
  );
}