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