PaymentIntentNextActionKonbiniLawson.fromJson constructor
PaymentIntentNextActionKonbiniLawson.fromJson(
- Object? json
Implementation
factory PaymentIntentNextActionKonbiniLawson.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PaymentIntentNextActionKonbiniLawson(
confirmationNumber: map['confirmation_number'] == null
? null
: (map['confirmation_number'] as String),
paymentCode: (map['payment_code'] as String),
);
}