PaymentIntentKlarna.fromJson constructor

PaymentIntentKlarna.fromJson(
  1. 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']));
}