PaymentFrameModel.fromJson constructor Null safety
Implementation
factory PaymentFrameModel.fromJson(Map<String, dynamic> json) =>
PaymentFrameModel(
code: json["code"],
referenceCode: json["referenceCode"],
frame: json["frame"],
domain: json["domain"],
confirmationPage: json["confirmationPage"],
rejectionPage: json["rejectionPage"],
paymentUrl: json["paymentURL"],
browser: json["browser"],
);